我的UITableView
中有一个UIViewController
,其中包含多个单元格原型和自动行高以及多个部分和行。
有些部分有标题视图,其他部分没有。
myTableView.rowHeight = UITableViewAutomaticDimension
我想跳到第10个部分,所以我使用:
let section = NSIndexPath(forRow: 0, inSection: 9)
myTableView.scrollToRowAtIndexPath(section, atScrollPosition: .Top, animated: true)
但它不起作用,因为我认为iOS无法真正知道第{10}节开始于UITableViewAutomaticDimension
。
感谢阅读。