ios tableview iphone5s 6 6plus多行显示第一行问题

环境:

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,ios,tableview显示第一行,iphone5s)