//给某个按钮上的数字设置大小+ (void)setDefaultFont:(id)sender size:(float)size{ [sender setFont:[UIFont fontWithName:@"Helvetica" size:size]];}用法:-(void)initButto....
分类:
其他好文 时间:
2014-07-21 09:29:23
阅读次数:
265
使用NSDictionaty来设置文本的属性:
NSDictionary * attributes = @{NSFontAttributeName: [UIFont fontWithName:@"Heiti SC" size:20]};
[confirmBarButton setTitleTextAttributes:attributes forState:UIControlStateN...
分类:
移动开发 时间:
2014-07-19 08:06:31
阅读次数:
257
加粗loginLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:20];加粗并且倾斜loginLabel.font = [UIFont fontWithName:@"Helvetica-BoldOblique" size:20];
分类:
其他好文 时间:
2014-07-16 19:51:14
阅读次数:
201
[label setNumberOfLines:0];//设置显示的行数NSString *s = @"string......";//设置要显示的内容UIFont *font = [UIFont fontWithName:@"Arial" size:12];//设置字体样式CGSize size ...
分类:
移动开发 时间:
2014-07-16 15:46:31
阅读次数:
222
打开 Font Maker:NGUI->Open->Font Maker类型:Generated Bitmap最后将生成一个 prefab。这个 prefab 包含一个 UIFont 的脚本。UIFont 与 UIAtlas 的关系UIFont 使用了 UIAtlas 中的某个 Sprite。生成 ...
分类:
其他好文 时间:
2014-07-16 15:09:20
阅读次数:
248
项目中想使用第三方的字体,在stackoverflow上查询解决办法,也折腾一会,添加成功,示例如下:
1.将xx.ttf字体库加入工程里面
2.在工程的xx-Info.plist文件中新添加一行Fonts provided by application,加上字体库的名称
3.引用字体库的名称,设置字体: [UIFont
fontWithName:@"fontname"...
分类:
移动开发 时间:
2014-07-16 10:22:19
阅读次数:
335
1 //创建label UILabel*label=[[UILabelalloc]initWithFrame:CGRectMake(0,0,0,0)]; 2 //文本 NSString*string =@"11111111122222222233333333"; UIFont*font=[U...
分类:
移动开发 时间:
2014-07-07 11:33:02
阅读次数:
232
一般在微博添加昵称和文本 QQ聊天文本中使用.宏定义#define MJTextFont [UIFont systemFontOfSize:15]定义方法/** * 计算文字尺寸 * * @param text 需要计算尺寸的文字 * @param font 文字的字体 * @p...
分类:
其他好文 时间:
2014-07-02 20:43:29
阅读次数:
162
[vc.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"AmericanTypewriter" size:20.0f],UITextAttribut...
分类:
其他好文 时间:
2014-06-29 18:20:45
阅读次数:
160
UIFONT 没有字体加精参数,但可以修发,字体名,达到加粗的效果正常:Helvetica加粗"Helvetica-Bold""TimesNewRomanPS-BoldMT""Arial-BoldMT""CourierNewPS-BoldMT""Georgia-Bold"
分类:
其他好文 时间:
2014-06-20 19:26:05
阅读次数:
200