Xcode Storyboard - Where to set UITableViewCell height
问题 I am using Xcode 7 and I am trying to set the height of a UITableViewCell in the storyboard settings to have a different cell height for different devices (eg. normal and compact x regular). I cannot find a place for these settings. Is this only possible by doing it programmatically? 回答1: Click on Table View after that click on Size Inspector and adjust your cell row height here - Add this below code in your controller class viewDidLoad tableView.estimatedRowHeight = 100.0 // Adjust Primary