我使用UISearchDisplayController及其SearchBar,如图:
正如您所看到的,由于搜索栏之前的视图需要在此处,因此搜索栏上方的视图未正确放置,但我不知道如何移动它。
我已经有了这段代码:
@implementation MySearchDisplayController
- (void)setActive:(BOOL)visible animated:(BOOL)animated
{
[super setActive: visible animated: NO];
[self.searchContentsController.navigationController setNavigationBarHidden: NO animated: NO];
[self.searchResultsTableView setFrame:CGRectMake(0, 32, 320, 476)];
[self.searchContentsController.view setBackgroundColor:[UIColor whiteColor]];
[self.searchBar setBarTintColor:[UIColor whiteColor]];
}
@end
我该如何解决?
我指定如果我删除后面的蓝色视图没有问题,那么它是导致问题的原因,但我需要将视图放在这个地方。