私はUISearchControllerを使用していますが正常に動作しています。しかし、ステータスバーを部分的に隠す検索バーの上に空白が残っています(フォーカスされている場合)。 This espaceUISearchController - 空白がステータスバーを隠す
すでにself.edgesForExtendedLayout = UIRectEdgeNone
もself.navigationController.extendedLayoutIncludesOpaqueBars = YES
に設定しようとしましたが、スペースはまだあります。 self.definesPresentationContext = YES;
を設定しようとしましたが、searchbarがステータスバーの位置like thisを取得しました。
UINavigationController
に埋め込まれたUIViewController
を使用しています。これは今実装しているセットアップです:
@interface DirectoryViewController : UIViewController <UITableViewDataSource , UITableViewDelegate ,UISearchBarDelegate, UISearchControllerDelegate, UISearchResultsUpdating>
@property (strong, nonatomic) NSMutableArray *personsArray;
@property (nonatomic, strong) UISearchController *searchController;
@property (nonatomic, strong) NSMutableArray *searchResults;
@implementation DirectoryViewController
- (void)viewDidLoad {
[super viewDidLoad];
UINavigationController *searchResultsController = [[self storyboard] instantiateViewControllerWithIdentifier:@"TableSearchResultsNavController"];
// Our instance of UISearchController will use searchResults
self.searchController = [[UISearchController alloc] initWithSearchResultsController:searchResultsController];
// The searchcontroller's searchResultsUpdater property will contain our tableView.
self.searchController.searchResultsUpdater = self;
self.searchController.delegate = self;
self.searchController.searchBar.delegate = self;
//Cancel button tint
_searchController.searchBar.tintColor = [UIColor whiteColor];
[self.searchController.searchBar setBackgroundImage:[UIImage imageNamed:@"navBar"]
forBarPosition:0
barMetrics:UIBarMetricsDefault];
if ([self respondsToSelector:@selector(edgesForExtendedLayout)]) { /// iOS 7 or above
self.edgesForExtendedLayout = UIRectEdgeNone;
}
self.navigationController.extendedLayoutIncludesOpaqueBars = YES;
}
私は助けていただきありがとうございます。ありがとう