环境:
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
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-05 17:17:35