我有一个使用UITableView的应用程序,在3.5英寸和4英寸的iPhone模拟器上完美工作,但在64位模拟器中不加载表.可能只是我的xib文件或代码有问题,但我只想知道64位iOS中的UITableView代理是否有任何更改.
解决方法
我有同样的问题.在我的情况下,问题可以通过改变来解决
- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
至
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
就如此容易.