tabbar(非自定义) 文字的颜色 [NSDictionary dictionaryWithObjectsAndKeys: [UIColor redColor], UITextAttributeTextColor, [UIFont fontWithName:@"Arial" size:0....
分类:
其他好文 时间:
2014-11-13 18:21:13
阅读次数:
133
1,粗体label.font = UIFont(name: "Helvetica-Bold", size: 32/2)2,pageControl pageControl.pageIndicatorTintColor =UIColor.grayColor() pageControl.curr...
分类:
移动开发 时间:
2014-11-07 18:55:27
阅读次数:
215
//UILable的大小自适应实例 UILabel *myLable = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 2, 2)];//设定位置与大小 [myLable setFont:[UIFont fontWithName:...
分类:
其他好文 时间:
2014-10-24 20:45:03
阅读次数:
229
#Cell _followBtn = [[UIButton alloc]initWithFrame:CGRectMake(kMainApplicationWidth-79.0f, 20.0f, 67.0, 30.0f)]; _followBtn.titleLabel.font = [UIFont s...
分类:
其他好文 时间:
2014-10-18 15:16:29
阅读次数:
213
常用属性:numberOfLines =0时自动换行myLabel.adjustsFontSizeToFitWidth = YESmyLabel.font = [UIFont boldSystemFontOfSize:14.0f];shadowColor 这个属性是 UIColor 类型,如属性.....
分类:
其他好文 时间:
2014-10-13 16:05:59
阅读次数:
161
btn.frame=CGRectMake(x, y, width, height);[btnsetTitle:@"search"forState:UIControlStateNormal];//设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSize: 14...
分类:
其他好文 时间:
2014-10-13 01:41:28
阅读次数:
427
使用NSDictionaty来设置文本的属性:NSDictionary * attributes = @{NSFontAttributeName: [UIFont fontWithName:@"Heiti SC" size:20]}; [confirmBarButton setTitleTex...
分类:
移动开发 时间:
2014-09-27 23:29:01
阅读次数:
203
自iOS7推出,文字的处理越来越灵活了,我们该如何使用这些漂亮的文字呢:NSKernAttributeName: @10 //调整字句 kerning 字句调整 NSFontAttributeName : [UIFont systemFontOfSize:_fontSize...
分类:
移动开发 时间:
2014-09-27 22:57:30
阅读次数:
268
字体族加bold修饰的就是加粗字体
比如[UIFont fontWithName:@"ArialMT" size:20];...
分类:
其他好文 时间:
2014-09-25 20:25:57
阅读次数:
122
精简加载自定义字体效果图:核心源码:UIFont+WDCustomLoader.m 与UIFont+WDCustomLoader.h//// UIFont+WDCustomLoader.h//// Created by Walter Da Col on 10/17/13.// Copyrigh...
分类:
其他好文 时间:
2014-09-21 09:07:40
阅读次数:
482