码迷,mamicode.com
首页 > 移动开发 > 详细

ios控件 UILabel

时间:2015-01-08 11:02:17      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

UILabel 的作用是显示文本
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 40)]; label.text = @"代佳宏";//创建文本的内容 nil
label.textColor = [UIColor redColor];//设置文本颜色
label.font = [UIFont systemFontOfSize:23];//设置字体大小

label.shadowColor = [UIColor blueColor];//设置阴影颜色

label.shadowOffset = CGSizeMake(2, 2);//设置阴影偏移量

[self.view addSubview:label];//显示文本

 

 

NSTextAlignment label.textAlignment = NSTextAlignmentCenter; //文本居中
label.lineBreakMode = NSLineBreakByCharWrapping; //文本打断方式

 

label.numberOfLines = 3; //文本行数  为0时则为任意行

label.userInteractionEnabled = YES; //打开UIBlable交互

[label sizeToFit];//自动根据文本大小调整UIBlabel

 

 

ios控件 UILabel

标签:

原文地址:http://www.cnblogs.com/daijiahong/p/4210132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!