Tag: UITableView的uitableviewsectionheader

更改UITableView节标题的字体大小

有人可以请教我最简单的方法来更改UITableView节头中的文本的字体大小? 我使用以下方法实现了部分标题: – (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section 然后,我明白如何使用这种方法成功更改节头高度: – (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 我有使用此方法填充的UITableView单元格: – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 然而,我坚持如何实际增加节标题文本的字体大小或字体样式? 有人可以协助吗? 谢谢。