码迷,mamicode.com
首页 >  
搜索关键字:uifont    ( 255个结果
自定义按钮 文字在左图片在右
图片宽度:15.f [_titleBtn setTitle:title forState:UIControlStateNormal]; CGSize titleSize = [title sizeWithAttributes:@{NSFontAttributeName: [UIFont fontWi
分类:其他好文   时间:2016-02-01 17:41:59    阅读次数:139
iOS 根据字符串数目,自定义Label等控件的高度
利用分类,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
蜗牛爱课 -- iOS 设置UIButton的字体的大小、显示位置、大小
/设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSize: 14.0]]; //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法//应该使用btn.titleLabel.font = [UIFont systemFontOfSize: ...
分类:移动开发   时间:2016-01-26 01:35:05    阅读次数:235
根据 字数 确定 UI控件高度
//字体 textLabel.font = [UIFont systemFontOfSize:13]; CGFloat labelWidth = [UIScreen mainScreen].bounds.size.width-100; // 创建文字 NSString *string =@"...
分类:其他好文   时间:2016-01-25 13:08:47    阅读次数:167
ios 写项目的时候遇到的问题及解决方案(2)
11.自适应文本高度1 NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14]};2 3 CGRect rect = [text boundingRectWithSize:CGSizeMake(Vi...
分类:移动开发   时间:2016-01-14 18:57:38    阅读次数:493
iOS UIFont 字体名字大全
Font Family: American TypewriterFont: AmericanTypewriterFont: AmericanTypewriter-BoldFont Family: AppleGothicFont: AppleGothicFont Family: ArialFont: ...
分类:移动开发   时间:2016-01-13 10:52:27    阅读次数:166
iOS字体 UIFont 字体名字大全
打印所有的字体NSArray *familyNames = [UIFont familyNames];//所有的家族名称 for(NSString *familyName in familyNames) { NSLog(@"familyName:%@", familyName);//打印...
分类:移动开发   时间:2016-01-07 22:58:15    阅读次数:247
计算改变行间距的UILabel高度
有人碰到同样的需求吗?有什么比较好的实现吗?一段文字需要改变行间距还需要计算出高度调整位置/** _str:要现实的字符串 _font:字体 _labWidth:Lab最大宽度 _lineSpacing:行间距 _numberOfLines:显示行数 */ +(CGSize)labSizeWithStr:(NSString*)_strfont:(UIFont*)_fontlabWi..
分类:其他好文   时间:2016-01-06 18:10:27    阅读次数:149
iOS- 详解文本属性Attributes
1.NSKernAttributeName:@10 调整字句 kerning 字句调整2.NSFontAttributeName :[UIFont systemFontOfSize:_fontSize] 设置字体3.NSForegroundColorAttributeName:[UIColor re...
分类:移动开发   时间:2016-01-05 15:18:08    阅读次数:529
255条   上一页 1 ... 8 9 10 11 12 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!