I am a beginner with iOS development. Currently I have migrating a ios5 code to the ios7.
Getting the following overlap issue in my code : http://s17.postimg.org/90m7mx5lb/collide.png
I have updated the app delegate with the following code :
self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
The interface etc, is generated directly via ViewController code and not using Interface Builder or StoryBuilder.
Please advice..
UPDATE:
Using the following in all viewcontroller
UIImage *stretchImage=[UIImage imageNamed:kNavigationBg];
stretchImage=[stretchImage stretchableImageWithLeftCapWidth:1 topCapHeight:0];
[self.navigationController.navigationBar setBackgroundImage:stretchImage forBarMetrics:UIBarMetricsDefault];