码迷,mamicode.com
首页 >  
搜索关键字:uilabel    ( 1031个结果
iOS的UIFont如何设置字体
想必大家都用过UILabel,但是怎么来设计label上的字体呢?有一个方法: label.font = [UIFont fontWithName:@"Avenir-Light" size:28]; 但是fontWithName后面的参数从哪里来得呢?我们不妨来打印出familyNames NSArray *familyNames = [UIFont familyNames];     ...
分类:移动开发   时间:2014-06-20 11:34:49    阅读次数:295
Blocks实现代理传值
一、RootViewController: #import "RootViewController.h" #import "SecondViewController.h" @interface RootViewController () { UILabel *_myLabel; } @end @implementation RootViewController - (id)in...
分类:其他好文   时间:2014-06-19 10:24:12    阅读次数:283
【iOS】1
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(320/2.0 - 140/2.0, 80, 140, 40)];label.text = @"Hello World";label.backgroundColor = [UICol...
分类:移动开发   时间:2014-06-14 08:32:55    阅读次数:266
【转】UITableViewCell自适应高度 UILabel自适应高度和自动换行
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {// 列寬CGFloat contentWidth = self.tableView.frame.size....
分类:其他好文   时间:2014-06-12 23:17:40    阅读次数:358
UILabel 多颜色、字体
NSMutableAttributedString*str=[[NSMutableAttributedStringalloc]initWithString:@"UsingNSAttributedString"];[straddAttribute:NSForegroundColorAttributeNamevalue:[UIColorblueColor]range:NSMakeRange(0,5)];[straddAttribute:NSForegroundColorAttributeNamevalue:[UI..
分类:其他好文   时间:2014-06-10 22:32:09    阅读次数:291
UILabel添加selector方法
如果想要跟随手势...
分类:其他好文   时间:2014-06-10 06:19:11    阅读次数:204
UILabel的顶对齐解决方法
对于有多行文字的UILabel而言,需要设置UILabel的numberoflines属性,此属性默认是1,也就是只显示一行,多余的会以尾部,中间的方式进行截断,具体要看你的初始设置。在这里可以将其设置为numberoflines=0, 不限制label的行数,以实际文字数来确定行数。但是在解决行数...
分类:其他好文   时间:2014-06-07 10:48:04    阅读次数:203
swift动画小试牛刀
swift刚出没多长时间,看到各种惊呼党,翻译党,黑苹果党,视频教学党如雨后春笋版喷薄而出......我想说有点开发基础的人,其实看看文档也就行了,毕竟语言是拿来用的。今天花了一下午的时间,没有太看swift的syntax,而是试了试用swift写个最最简单的UILabel动画,贴下代码:impor...
分类:其他好文   时间:2014-06-05 15:47:27    阅读次数:280
iOS.UIKit.09.UINavigationBar
一、点击UINavigationBar中的UIBarButtonItem,改变UILabel中的文本,如图01,02,03图01图02图03二、项目步骤:1、选择Simple View Aplication,取名cq.40.UINavigationBar,如图04图042、Main.storyboa...
分类:移动开发   时间:2014-06-04 14:47:56    阅读次数:298
iOS.UIKit.11.UIPickerView
一、案例介绍:点击UIButton,将选中的省市信息显示在UILabel中,如图01,02图01图02二、案例步骤:1、选择Simple View Aplication,取名cq.37.普通选择器,如图03图032、Main.storyboard,如图043、provinces_cities.pli...
分类:移动开发   时间:2014-06-04 14:38:12    阅读次数:269
1031条   上一页 1 ... 99 100 101 102 103 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!