自我大小调整单元支持IOS 9而不支持IOS 8

时间:2015-12-02 18:49:48

标签: ios swift uitableview custom-cell

我是我的应用程序中的新手我有一个概念,即为此目的动态增加自定义单元格。我按照以下教程 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  }

0 个答案:

没有答案