UITableViewAutomaticDimension not working in Xcode 6.3

前端 未结 2 1870
误落风尘
误落风尘 2021-02-12 22:08

I updated my Xcode to 6.3 along with Swift 1.2, and I made the transition.

Everything works except dynamic row height for table view. I have those on 3 completely differ

相关标签:
2条回答
  • 2021-02-12 22:22

    I simply added UITableViewAutomaticDimension to estimatedrowforindexpath as well. You can see how it works on the BEAM App (under 'people' category).

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewAutomaticDimension;
    }
    
    - (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewAutomaticDimension;
    }
    
    0 讨论(0)
  • 2021-02-12 22:22

    Estimated row height needs to be provided.

    It is better not to implement estimatedHeightForRowAtIndexPath: unless necessary.

    estimatedRowHeight is cheaper provided you can come up with a value

        tableView.rowHeight = UITableViewAutomaticDimension
        tableView.estimatedRowHeight = 30 //Provide any appropriate value
    
    0 讨论(0)
提交回复
热议问题