如何减少UITableView中节的宽度?
答案 0 :(得分:1)
该部分的宽度是tableView的宽度。你可以做什么,如果改变了secion的外观并使其在右边透明,它将显得比tableView短。
您可以使用以下两种方法自定义部分:
tableView:heightForHeaderInSection:
tableView:viewForHeaderInSection:
答案 1 :(得分:0)
弹出的第一件事就是在viewwillappear中使用以下代码:
CGRect tableViewFrame = theTableView.frame;
tableViewFrame.size.width = newWidth;
theTableView.frame = tableViewFrame;
也许在它之后有一个[tableview reloaddata]。
让我知道它是否适合您!
答案 2 :(得分:0)
如果您正在谈论章节标题,这可能会对您有所帮助
iPhone - UITableViewController - Setting section header in portrait and landscape