NSArray *familyNames = [UIFont familyNames]; for( NSString *familyName in familyNames ){ NSLog(@"Family: %@",familyName); NSArray *f...
分类:
移动开发 时间:
2014-08-24 23:35:53
阅读次数:
154
UILabel*label = [[UILabelalloc]initWithFrame:CGRectMake(13,10,380,30)]; UIFont*font = [UIFontfontWithName:@"Helvetica"size:15.0]; [labelsetFont:fon...
分类:
其他好文 时间:
2014-08-18 17:45:02
阅读次数:
204
for(NSString *familyName in [UIFont familyNames]){ NSLog(@"Font FamilyName = %@",familyName); //*输出字体族科名字 for(NSString *fontName in [UI...
分类:
其他好文 时间:
2014-08-16 17:06:40
阅读次数:
190
1.网上搜索字体文件(后缀名为.ttf,或.odf)2.把字体库导入到工程的resouce中3.在程序添加以下代码 输出所有字体NSArray *familyNames = [UIFont familyNames];for( NSString *familyName in familyNames )...
分类:
移动开发 时间:
2014-08-08 12:24:35
阅读次数:
197
- (float)width:(NSString *)str font:(UIFont *)font{ NSDictionary *attribute = @{NSFontAttributeName:font}; CGSize size = [str boundingRectWi...
分类:
移动开发 时间:
2014-08-04 17:17:27
阅读次数:
208
文本属性Attributes1.NSKernAttributeName: @10 调整字句 kerning 字句调整2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体3.NSForegroundColorAttribute...
分类:
其他好文 时间:
2014-08-04 13:46:37
阅读次数:
234
// iOS_根据文字 字数动态确定Label宽高
// 设置Label的字体 HelveticaNeue Courier
UIFont *fnt = [UIFont fontWithName:@"HelveticaNeue" size:24.0f];
_nameLabel.font = fnt;
// 根据字体得到NSString的尺寸
CG...
分类:
移动开发 时间:
2014-07-29 18:06:12
阅读次数:
33942
//设置字体:粗体,正常的是?SystemFontOfSize?? ?? ? ? label.font?= [UIFont?boldSystemFontOfSize:20];? ? ? ? ??//设置文字颜色?? ? ? label.textColor?= [UIColor?orangeColor]; ? ? ...
分类:
其他好文 时间:
2014-07-27 12:15:42
阅读次数:
213
// 初始化输入框并设置位置和大小
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(10, 10, 300, 180)];
// 设置预设文本
textView.text = @"";
// 设置文本字体
textView.font = [UIFont fontWithName:@"Arial" size:16...
分类:
移动开发 时间:
2014-07-26 02:12:27
阅读次数:
249
动态改变Cell的高度1.利用tableView代理方法的返回值决定每一行cell的高度- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath2.UIFont// 返...
分类:
其他好文 时间:
2014-07-22 22:40:54
阅读次数:
252