为什么我的UITableViewCell报告UITableViewCell.frame.size.width的实际值的一半。我正在使用iPhone 4s进行开发。
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
NSLog表示它只有320.0
NSLog(@"cell width = %f", cell.frame.size.width);
有谁知道这是为什么?我错过了什么吗?
更新:我期待宽度(以像素为单位)。有没有直接的方法呢?