我的UICustomCell
UITableView
与iPhone 6和6 +的桌面宽度不符
我已经拿了笔。
一个用于iPhone,一个用于iPad
答案 0 :(得分:2)
screenWidth = [UIScreen mainScreen].bounds.size.width;
UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, screenWidth, screenHeight) style:UITableViewStylePlain];
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Prototype Cell" forIndexPath:indexPath];
cell.frame.size.width = tableView.frame.size.width;
}
答案 1 :(得分:0)
这是我的自定义cell.xib的活动检查器 请看一下图片