iPhone 6/6+ optimization issue

336 Views Asked by At

I spent a lot of time trying optimize my app for iPhone6/6+, but several UI elements have not yet been obtained to optimize.

  1. UINavigationBar & UISearchBar with custom image background [SOLVED]:

enter image description here

    [[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.

  1. UITableViewCell: [SOLVED]

enter image description here

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)];
  1. UISearchDisplayController position (1 - search activated; 2 - search began):

enter image description here enter image description here

Any help is appreciated!

Thank you

1

There are 1 best solutions below

1
On BEST ANSWER

I have found solution for question #1 from iOS 8 NavigationBar BackgroundImage

EDITED after @RoboticCat answer

UIEdgeInsets stretchablePart = { .left = 0, .right = 50, .top = 0, .bottom = 0 };
[[UINavigationBar appearance] setBackgroundImage:[[UIImage imageNamed:@"navBar"] resizableImageWithCapInsets:stretchablePart resizingMode:UIImageResizingModeStretch] forBarMetrics:UIBarMetricsDefault];

where navBar is Imageset of 1x,2x and 3x images