自动调整标签+ UitableView。不调整大小

时间:2015-04-22 13:47:57

标签: ios uitableview swift autolayout uilabel

我有一个带有3个标签的表格单元格。其中两个有“行:0”。

cell view

我设置了像http://www.raywenderlich.com/73602/dynamic-table-view-cell-height-auto-layout

这样的拥抱和阻力优先级

这样工作正常,但只有TableView位于“TabBarController”中。如果我把相同的TableView放到简单的ViewController上,Label1就不会扩展。

精细: fine

错: wrong

我为两个表使用一个单元格类和单元格xib。并且一个类作为表委托/数据源。

表委托:

   func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
       var cell = table.dequeueReusableCellWithIdentifier("GraveTableViewCell") as? GraveTableViewCell
       if (cell == nil) {
           cell = NSBundle.mainBundle().loadNibNamed("GraveTableViewCell", owner: self, options: nil)[0] as? GraveTableViewCell
           cell?.configureCell(data[indexPath.row])
       }
       return cell! 
   }

0 个答案:

没有答案