常用默认字体
感觉基本上很少用别的。
[UIFont systemFontOfSize:18]; // 正常
[UIFont boldSystemFontOfSize:18]; // 加粗
[UIFont italicSystemFontOfSize:18]; // 倾斜
系统包含的字体
通过 UIFont 类中的 familyNames 属性 可以获取系统已存在的字体,有挺多的。这里简单举例,遍历并显示在tableView 上看看。
主要是根据 Name 去加载对应的字体。
- (void)viewDidLoad {
[super viewDidLoad];
self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
self.tableView.delegate = self;
self.tableView.dataSource = self;
[self.view addSubview:self.tableView];
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:NSStringFromClass([UITableViewCell class])];
self.tableView.rowHeight = 44;
self.fontArray = [NSMutableArray array];
[[UIFont familyNames] enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
[self.fontArray addObject:obj];
}];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.fontArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([UITableViewCell class])];
cell.textLabel.font = [UIFont fontWithName:[self.fontArray objectAtIndex:indexPath.row] size:20];
cell.textLabel.text = self.fontArray[indexPath.row];
return cell;
}
简单解释
// 获取的是所有字体包,字体包里可能还有 粗体,斜体...
self.fontArray = [NSMutableArray array];
[[UIFont familyNames] enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
NSLog(@"%@",obj);
}];
// 根据字体包名称 ,获取里面的几个字体。
[[UIFont fontNamesForFamilyName:@"Menlo"] enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
[self.fontArray addObject:obj];
}];
其他字体
抄来了 免费字体库下载
http://www.webpagepublicity.com/free-fonts.html
1 下载字体 XXX.ttf
2 拖入项目,并确保 Build Phases 的 Copy Bundle Resources 中有XXX.ttf
3 修改 info.plist 中 添加 Fonts provided by application -- XXX.ttf(注意需要后缀,不然直接崩溃在main)
4 下载字体 正常的话就能直接使用 Name 加载字体了,如果不行的话,可能是下载字体文件名与familyName 不一致,自行遍历找出 name(或者直接 MAC 上打开看安装时的name)
其他 UIFontDescriptor.h
这个 待研究,字体描述,到底什么用。
1