«uitableviewsectionheader» 태그된 질문

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 그러나 …


1
접을 수있는 섹션 : [Assert] preReloadFirstVisibleRow에 대한 새 전역 행 인덱스를 확인할 수 없습니다 (0).
UITableViewController에서 접을 수있는 섹션 헤더를 구현하고 있습니다. 섹션 당 표시 할 행 수를 결정하는 방법은 다음과 같습니다. override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.sections[section].isCollapsed ? 0 : self.sections[section].items.count } 'isCollapsed'에 대한 부울과 함께 섹션 정보를 보유하는 구조체가 있습니다. 상태를 전환하는 방법은 다음과 같습니다. private …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.