I spent a lot of time trying optimize my app for iPhone6/6+, but several UI elements have not yet been obtained to optimize.
- UINavigationBar & UISearchBar with custom image background [SOLVED]:
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navBar"] forBarMetrics:UIBarMetricsDefault];
UISearchBar's background was set in storyboard.
There is ImageSet for UINavigationBar and UISearchBar which contains 1x, 2x, and 3x png files.
- UITableViewCell: [SOLVED]
cellForRowAtIndexPath:
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
[cell setBackgroundColor:[UIColor clearColor]];
UISegmentedControl *mapTypeSelect = [[UISegmentedControl alloc]
initWithItems:
[NSArray arrayWithObjects:
NSLocalizedString(@"MAP_STANDART", nil),
NSLocalizedString(@"MAP_HYBRID", nil),
NSLocalizedString(@"MAP_SATELLITE", nil),
nil]];
CGSize cF = cell.frame.size;
[mapTypeSelect setFrame:CGRectMake(10, 5, cF.width-20, cF.height-10)];
- UISearchDisplayController position (1 - search activated; 2 - search began):
Any help is appreciated!
Thank you
I have found solution for question #1 from iOS 8 NavigationBar BackgroundImage
EDITED after @RoboticCat answer
where navBar is Imageset of 1x,2x and 3x images