How to create dynamic tableview cell with dynamic tableview height in iOS

前端 未结 4 781
太阳男子
太阳男子 2021-01-26 23:14

I want to increase tableview cell and tableview height based on content. Suppose tableview contain 2 record and his 1st cell height is 100 and 2nd cell height is 25 then tablevi

4条回答
  •  再見小時候
    2021-01-26 23:41

    self.tableView.frame = CGRectMake(self.tableView.origin.x, self.tableView.origin.y, self.tableView.frame.size.width, 125);
    

提交回复
热议问题