最佳答案
有人能告诉我在 UITableView 部分标题中改变文本字体大小的最简单方法吗?
我使用以下方法实现了章节标题:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
然后,我了解了如何使用这种方法成功地改变节头高度:
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
我使用这种方法填充了 UITableView 单元格:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
然而,我卡在如何实际增加字体大小-或者就此而言的字体风格-的章节标题文本?
有人能帮忙吗,谢谢。