iOS 9 UITableView单元格的文本标签不是UITableView的全宽

时间:2015-09-29 13:18:22

标签: ios objective-c uitableview

自更新到iOS 9以来,iPad环境中的表格视图单元格不再在单元测试中拉伸表格的整个宽度。

我的测试是一个简单的表,最后会拍摄快照。

- (void)testTableSize{
    UIViewController *viewController = [[UIViewController alloc] init];
    UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0,0,viewController.view.bounds.size.width, viewController.view.bounds.size.height) style:UITableViewStylePlain];

    tableView.dataSource = self;
    tableView.delegate = self;

    [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
    [viewController.view addSubview:tableView];

    ASCSnapshotVerifyViewiPad([viewController view]);
}

此示例中的单元格非常简单

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

// Configure the cell...
cell.textLabel.backgroundColor = [UIColor blueColor];   // Demo purpose
cell.textLabel.backgroundColor = [UIColor yellowColor]; // Demo purpose
cell.textLabel.text = [NSString stringWithFormat:@"Cell %d", (int)indexPath.row];
return cell;

但是我的细胞左右两边都画了很大的距离。知道为什么吗?

enter image description here

2 个答案:

答案 0 :(得分:37)

当我用iOS9测试我的应用程序时,我注意到一些UITableViews的左右两边都有很大的余量。经过一番调查后,我发现了以下新方法:

// iOS9
if([self.tableView respondsToSelector:@selector(setCellLayoutMarginsFollowReadableWidth:)]) {
    self.tableView.cellLayoutMarginsFollowReadableWidth = NO;
}

调用上面的代码后,在实例化UITableView之后,它应该删除它们。

设置tableView委托后粘贴此代码。

希望它有所帮助。

答案 1 :(得分:-1)

希望这能帮到你

    //    MARK: - TableView Delegates And Datasource Method -

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
    // IOS 7
    if(self.respondsToSelector(Selector("setSeparatorInset:"))){
        self.separatorInset = UIEdgeInsetsZero
        cell.separatorInset = UIEdgeInsetsZero
        tableView.separatorInset = UIEdgeInsetsZero;
    }
    // OTHER
    if(self.respondsToSelector(Selector("setPreservesSuperviewLayoutMargins:"))){
        if #available(iOS 8.0, *) {
            self.separatorInset = UIEdgeInsetsZero
            cell.layoutMargins = UIEdgeInsetsZero;
            cell.preservesSuperviewLayoutMargins = false
        }
    }

    // iOS 8
    if(self.respondsToSelector(Selector("setLayoutMargins:"))){
        if #available(iOS 8.0, *) {
            self.separatorInset = UIEdgeInsetsZero
            cell.layoutMargins = UIEdgeInsetsZero
        }
    }
    // iOS 9
    if (self.respondsToSelector("setCellLayoutMarginsFollowReadableWidth:")){
        if #available(iOS 9.0, *) {
            self.cellLayoutMarginsFollowReadableWidth = false
        }
    }
}