在iOS开发中设置字体的方法有很多种,下面为大家介绍比较常用的三种方法1.使用系统默认提供的字体系统默认提供的字体主要是指UIFont中提供的字体,其使用代码为:fontLabel.font = [UIFont fontWithName:@"Marion" size:17];或者是通过字体详细字典对...
分类:
移动开发 时间:
2015-08-17 17:13:22
阅读次数:
199
UILabel *fileNameLabel = [[UILabel
alloc]init];
[fileNameLabel setBackgroundColor:[UIColor
clearColor]];
[fileNameLabel setFont:[UIFont
systemFontOfSize:14]];
[fileNameLa...
分类:
其他好文 时间:
2015-08-17 14:05:32
阅读次数:
149
//设置字体大小 颜色 { UIColor *color = [UIColor brownColor]; UIFont * font = [UIFont systemFontOfSize:20]; NSDictionary * dict = [NSDictionary dic...
分类:
其他好文 时间:
2015-08-12 18:38:04
阅读次数:
130
UIFont *titleFont = [UIFont systemFontOfSize:13];// 状态1 TKSegementedItemStatus *compositeNormal = [TKSegementedItemStatus statusWithTitle:@"综合" titleC...
分类:
移动开发 时间:
2015-08-10 01:39:14
阅读次数:
187
btn.frame = CGRectMake(x, y, width, height);[btn setTitle: @"search" forState: UIControlStateNormal];//设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSi...
分类:
移动开发 时间:
2015-08-09 20:22:53
阅读次数:
457
初始化一个UILabel对象,并初始化大小UILabel* label = [[UILabelalloc]initWithFrame:CGRectMake(100,100,100,100)];设置显示的文字label.text=@"123";和字体相关的一个类,字号大小默认17@property(n...
分类:
其他好文 时间:
2015-08-08 16:19:17
阅读次数:
163
通过Category为NSString添加方法:1. 根据字符串样式、字符串长度计算字符串所占大小/*** @param font 字符串样式* @param maxWidth 指定字符串长度*/- (CGSize)sizeWithFont:(UIFont *)font maxWidth:(CGFl...
分类:
移动开发 时间:
2015-08-07 18:33:31
阅读次数:
492
1.设置title1 [btn setTitle: @"search" forState: UIControlStateNormal];2.设置字体1 //[btn setFont: [UIFont systemFontSize: 14.0]]; //这种可以用来设置字体的大小,但是可能会被移...
分类:
移动开发 时间:
2015-08-06 01:51:37
阅读次数:
124
想给UILabel换一个自定义的字体,从字体册选择兰亭黑:然后选择 在Finder中显示,找到字体文件为Lantinghei.ttc;将其拷贝到项目中,在info.plist里添加字体支持key,在其子项中输入字体文件名称:然后在第一时间修改Lable的字体:- (void)awakeFromNib {
// Initialization code
NSLog(@"%s enter!...
分类:
其他好文 时间:
2015-08-04 11:17:42
阅读次数:
953
文本属性Attributes1.NSKernAttributeName: @10 调整字句 kerning 字句调整2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体3.NSForegroundColorAttribute...
分类:
移动开发 时间:
2015-08-01 18:49:21
阅读次数:
142