图片宽度:15.f [_titleBtn setTitle:title forState:UIControlStateNormal]; CGSize titleSize = [title sizeWithAttributes:@{NSFontAttributeName: [UIFont fontWi
分类:
其他好文 时间:
2016-02-01 17:41:59
阅读次数:
139
利用分类,NSString,增加一个方法。#import #import @interface NSString (Height)+ (CGSize)getRect:(NSString *)textStr andWidth:(CGSize)size andFont:(UIFont *)font;@e...
分类:
移动开发 时间:
2016-01-26 21:59:44
阅读次数:
186
[self.navigationController.navigationBar setTitleTextAttributes: @{NSFontAttributeName:[UIFont systemFontOfSize:19], NSForegroundColorAttributeName...
分类:
其他好文 时间:
2016-01-26 20:16:25
阅读次数:
117
/设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSize: 14.0]]; //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法//应该使用btn.titleLabel.font = [UIFont systemFontOfSize: ...
分类:
移动开发 时间:
2016-01-26 01:35:05
阅读次数:
235
//字体 textLabel.font = [UIFont systemFontOfSize:13]; CGFloat labelWidth = [UIScreen mainScreen].bounds.size.width-100; // 创建文字 NSString *string =@"...
分类:
其他好文 时间:
2016-01-25 13:08:47
阅读次数:
167
11.自适应文本高度1 NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14]};2 3 CGRect rect = [text boundingRectWithSize:CGSizeMake(Vi...
分类:
移动开发 时间:
2016-01-14 18:57:38
阅读次数:
493
Font Family: American TypewriterFont: AmericanTypewriterFont: AmericanTypewriter-BoldFont Family: AppleGothicFont: AppleGothicFont Family: ArialFont: ...
分类:
移动开发 时间:
2016-01-13 10:52:27
阅读次数:
166
打印所有的字体NSArray *familyNames = [UIFont familyNames];//所有的家族名称 for(NSString *familyName in familyNames) { NSLog(@"familyName:%@", familyName);//打印...
分类:
移动开发 时间:
2016-01-07 22:58:15
阅读次数:
247
有人碰到同样的需求吗?有什么比较好的实现吗?一段文字需要改变行间距还需要计算出高度调整位置/**
_str:要现实的字符串
_font:字体
_labWidth:Lab最大宽度
_lineSpacing:行间距
_numberOfLines:显示行数
*/
+(CGSize)labSizeWithStr:(NSString*)_strfont:(UIFont*)_fontlabWi..
分类:
其他好文 时间:
2016-01-06 18:10:27
阅读次数:
149
1.NSKernAttributeName:@10 调整字句 kerning 字句调整2.NSFontAttributeName :[UIFont systemFontOfSize:_fontSize] 设置字体3.NSForegroundColorAttributeName:[UIColor re...
分类:
移动开发 时间:
2016-01-05 15:18:08
阅读次数:
529