标签:ios tableview显示第一行 iphone5s
环境:
1、xcode6.4|6.3 。
2、tableview中多行在iphone4s、5 上显示正常,但5s 6 6plus 显示在第一行。
如下:
iphone5s 6 6plus 显示
iphone5显示
发现问题:
引用的第三方库,之前的table的行高 方法如下,注意: 红色
- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
解决方法:
把float 改成CGFloat 就ok 如下:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
版权声明:本文为博主原创文章,未经博主允许不得转载。
ios tableview iphone5s 6 6plus多行显示第一行问题
标签:ios tableview显示第一行 iphone5s
原文地址:http://blog.csdn.net/shuang60/article/details/46952713