Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这很奇怪。先看看我的IB项目:
现在它在模拟器上的样子:
这里有两件事:
我猜你正在使用自动布局。在新版本的 xcode 中,自动布局是默认的。您可以在视图的文件检查器选项卡中取消选中“使用自动布局”。
然后,您可以通过在表格视图控制器中覆盖此方法来指定单元格的高度。
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return 70.0; // specify table cell's height }