Questions tagged «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 func getSectionsNeedReload(_ section: Int) -> [Int] { var sectionsToReload: [Int] = [section] let toggleSelectedSection = !sections[section].isCollapsed // Toggle collapse self.sections[section].isCollapsed = toggleSelectedSection if self.previouslyOpenSection != -1 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.