创建数组规定每组个数 NSArray *array = [UIFont familyNames]; _fontArray = [[NSMutableArray alloc]initWithCapacity:13]; NSMutableArray *temp = nil; for (int index ...
分类:
编程语言 时间:
2016-04-09 10:37:48
阅读次数:
204
NSMutableParagraphStyle的部分属性: 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegr ...
分类:
移动开发 时间:
2016-03-27 10:53:00
阅读次数:
4102
//1.设置该label的numberOfLines为0 self.titleLabel.numberOfLines = 0; //2.字体的设置要与之前相同 NSDictionary * attribute = @{NSFontAttributeName:[UIFont systemFontOfS
分类:
其他好文 时间:
2016-03-21 12:20:41
阅读次数:
152
//lalalabel自适应 self.label = [UILabel new]; self.label.font = [UIFont systemFontOfSize:14]; NSString *titleContent = @"亲,欢迎您通过以下方式与我们的营销顾问取得联系,交流您再营销推广
分类:
其他好文 时间:
2016-03-10 23:12:39
阅读次数:
176
分段改变文字颜色 核心代码是 第四行 的attribute 和 value 这里要注意的是 这两个 属性是关联使用的 如果要改变文字字体, value:[uifont ...] 前面的attribute:NSFontAttributeName 就要相应的改变
分类:
其他好文 时间:
2016-03-01 10:54:19
阅读次数:
124
给定字符串的长度, 还有换行方式, 算出高度 1 UIFont * font = [UIFont systemFontOfSize:14]; 2 3 CGSize size = [text sizeWithFont:font xonstrainedToSize:CGSizeMake(140, 100
分类:
其他好文 时间:
2016-02-24 22:30:24
阅读次数:
204
初始化一个UILabel对象,并初始化大小 UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; 设置显示的文字 label.text=@"123"; 和字体相关的一个类,字号大小默认17 @
分类:
移动开发 时间:
2016-02-19 18:52:48
阅读次数:
1940
1.将字体拖入项目 2.在info.plist 文件中加入 3.使用 self.label.font = [UIFont fontWithName: @"FZ XingHei" size:20]; 4.使用字体注意版权问题
分类:
移动开发 时间:
2016-02-16 14:45:50
阅读次数:
157
abel.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; 字体名如下: Font Family: American TypewriterFont: AmericanTypewriterFont: AmericanTypewrit
分类:
其他好文 时间:
2016-02-15 19:55:58
阅读次数:
180
1、如何通过代码设置Button title的字体大小 设置Button.titleLabel.font = [UIFont systemFontOfSize:<#(CGFloat)#>] ; 2、获取当前时间 NSDate *timeDate=[NSDate date]; NSDateFormat
分类:
移动开发 时间:
2016-02-04 18:21:24
阅读次数:
257