I have made application in xcode 3.1.3 targeting iphone os 3.0. It is working properly in simulator and device properly.
I am checking for installing application in os 4.0.
For that, i have opened project with xcode 3.2.3 and set deploment target to 4.0. Application works fine but there is issue of drawing background image as below.
- I am using background image with 320 by 460 size for drawing it in background. It is drawn well in iphone simulator 3.0 & device. But when it launch in iphone simulator 4.0 it draws image from top (starting from behind status bar) and leave 20 pixels blank at bottom of screen.(I am drawing background of UITableViewController with colorwithPatternImage method)
So, what to do for that type of issue ? is it okey to directly use project developed in xcode 3.1.3 in xcode 3.2.3 ?
I have refered this documentation https://developer.apple.com/iphone/prerelease/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/SupportingResolutionIndependence/SupportingResolutionIndependence.html for screen resolution.
But not clear about the problem of background drawing.