表视图宽度自动更改

时间:2011-11-22 04:53:29

标签: iphone ios

嗨我在ipad屏幕上有一张大小的表(0,0,200,200)。当我运行应用程序时,它看起来没问题,当我搜索它时,它的大小会自动更改并覆盖ipad屏幕上的所有区域。

但我希望保持固定在同一区域(0,0,200,200)。

如何修复此错误

以下用于搜索控制器的代码

if (self.savedSearchTerm)
{
    [self.searchDisplayController setActive:self.searchWasActive];
    [self.searchDisplayController.searchBar     SelectedScopeButtonIndex:self.savedScopeButtonIndex];
    [self.searchDisplayController.searchBar setText:savedSearchTerm];

    self.savedSearchTerm = nil;
}

1 个答案:

答案 0 :(得分:0)

设置tableview的框架就是你想要的。试试这个:

self.tableView.frame = CGRectMake(0,0,200,200);