我有一个UITableView
的应用程序,可以在iPhone Simulator 3.5-inch and 4 inch
上完美运行,但不会在64-bit Simulator
中加载表格。可能只是我的xib
文件或代码出了问题,但我只是想知道64位UITableView
中的iOS
个委托是否有任何变化。
答案 0 :(得分:28)
我遇到了同样的问题。在我的情况下,问题可以通过改变
来解决- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
到
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
就这么简单。