10
UITableView 섹션 헤더의 글꼴 크기 변경
UITableView 섹션 헤더에서 텍스트의 글꼴 크기를 변경하는 가장 쉬운 방법을 알려주시겠습니까? 다음 방법을 사용하여 섹션 제목을 구현했습니다. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section 그런 다음이 방법을 사용하여 섹션 헤더 높이를 성공적으로 변경하는 방법을 이해합니다. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 이 방법을 사용하여 UITableView 셀을 채웠습니다. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 그러나 …