- iOS 教程
- iOS 简介
- iOS环境搭建
- Objective-C 简介
- 创建第一款iPhone应用程序
- iOS操作(action)和输出口(Outlet)
- iOS - 委托(Delegates)
- 什么是UI元素?
- IOS加速度传感器(accelerometer)
- IOS通用应用程序
- IOS相机管理
- IOS定位操作
- IOS SQLite数据库
- IOS发送电子邮件
- IOS音频和视频(Audio & Video)
- IOS文件处理
- IOS地图开发
- IOS应用内购买
- IOS iAD整合
- IOS GameKit
- IOS 故事板(Storyboards)
- IOS自动布局
- IOS-Twitter和Facebook
- IOS内存管理
- IOS应用程序调试
标签的使用
标签的使用
标签用于显示静态内容,包括单独的一行或多行。
重要的属性
- textAlignment
- textColor
- text
- numberOflines
- lineBreakMode
添加自定义方法 addLabel
-(void)addLabel{ UILabel *aLabel = [[UILabel alloc]initWithFrame: CGRectMake(20, 200, 280, 80)]; aLabel.numberOfLines = 0; aLabel.textColor = [UIColor blueColor]; aLabel.backgroundColor = [UIColor clearColor]; aLabel.textAlignment = UITextAlignmentCenter; aLabel.text = @"This is a sample text\n of multiple lines. here number of lines is not limited."; [self.view addSubview:aLabel]; }
在 ViewController.m 中更新 viewDidLoad,如下所示:
- (void)viewDidLoad { [super viewDidLoad]; //The custom method to create our label is called [self addLabel]; // Do any additional setup after loading the view, typically from a nib. }
输出
运行应用程序,就会得到下面的输出:
关注微信小程序
扫描二维码
程序员编程王