我是我的应用程序中的新手我有一个概念,即为此目的动态增加自定义单元格。我按照以下教程 Understanding Self Sizing Cells and Dynamic Type in iOS 8 ] 1。 IOS 9设备中的所有工作正常但在IOS 8.2设备中进行测试时自定义单元格没有增加现在我正在使用XCODE 7.0.1任何人都有关于这个问题的想法,如果是的话?请告诉我
override func viewdidappear()
{
tableView.estimatedRowHeight = 44.0
tableView.rowHeight = UITableViewAutomaticDimension
tableView.reloaddata()
}
override func tableView(tableView: UITableView!, heightForRowAtIndexPath indexPath: NSIndexPath!) -> CGfloat
{return UITableViewAutomaticDimension }