iOS 8 - 搜索显示控制器在右侧显示空白区域

时间:2015-03-02 11:48:45

标签: ios swift uisearchdisplaycontroller

在应用程序中使用搜索显示控制器,它在iOS 7中运行良好,但在iOS 8中,它在搜索显示表的右侧显示一个空白区域,如下所示

enter image description here

尝试了很多但没有得到任何解决方案。

1 个答案:

答案 0 :(得分:1)

这可能是因为layoutMargins。尝试将此方法添加到表格视图的委托中,并查看事情是否按预期工作:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Remove seperator inset
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }

    // Prevent the cell from inheriting the Table View's margin settings
    if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {
        [cell setPreservesSuperviewLayoutMargins:NO];
    }

    // Explictly set your cell's layout margins
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }

}