forked from organicmaps/organicmaps
[ios] Fixed status bar in editor.
This commit is contained in:
parent
019d440d81
commit
8a866424f3
2 changed files with 10 additions and 0 deletions
|
@ -42,6 +42,11 @@ vector<string> SliceKeys(vector<pair<string, string>> const & v)
|
|||
[self configData];
|
||||
}
|
||||
|
||||
- (UIStatusBarStyle)preferredStatusBarStyle
|
||||
{
|
||||
return UIStatusBarStyleLightContent;
|
||||
}
|
||||
|
||||
#pragma mark - UISearchBarDelegate
|
||||
|
||||
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
|
||||
|
|
|
@ -74,6 +74,11 @@ namespace
|
|||
[super backTap];
|
||||
}
|
||||
|
||||
- (UIStatusBarStyle)preferredStatusBarStyle
|
||||
{
|
||||
return UIStatusBarStyleLightContent;
|
||||
}
|
||||
|
||||
- (void)configNavBar
|
||||
{
|
||||
self.title = L(@"editor_add_select_category");
|
||||
|
|
Loading…
Add table
Reference in a new issue