forked from organicmaps/organicmaps
[ios] Fixed search bar text attributes setup.
This commit is contained in:
parent
14ceacc381
commit
bd368bafe8
1 changed files with 4 additions and 1 deletions
|
@ -684,7 +684,10 @@ using namespace osm_auth_ios;
|
|||
textFieldInSearchBar = [UITextField appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]];
|
||||
|
||||
textField.backgroundColor = [UIColor white];
|
||||
textFieldInSearchBar.defaultTextAttributes = @{NSForegroundColorAttributeName : [UIColor blackPrimaryText]};
|
||||
textFieldInSearchBar.defaultTextAttributes = @{
|
||||
NSForegroundColorAttributeName : [UIColor blackPrimaryText],
|
||||
NSFontAttributeName : [UIFont regular14]
|
||||
};
|
||||
}
|
||||
|
||||
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
|
||||
|
|
Loading…
Add table
Reference in a new issue