我在项目中使用带有自动布局的情节提要板(XCode 6.3),使用大小类Wcompact hRegular。我无法根据内容动态设置UITableView Header的高度。

最佳答案

您可以在更改标题时使用此标题重新加载该部分

像这样:

- (void) shouldUpdateSections:(NSIndexSet *)sections
{
        [self.view.tableView reloadSections:sections withRowAnimation:UITableViewRowAnimationAutomatic];
}

当您需要更新标题时,请调用此方法。

为了提高性能,您可以仅为此标头创建单独的部分。

关于ios - 如何根据iOS 8中的内容动态调整UITableview header 高度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31019938/

10-09 22:19