iphone Dev. How can I make my app compatible with iOS 3 and iPads at the same time (iOS 4.2) -
i've been looking around way make application compatible iphones-ios3 , @ same time make compatible iphones , ipads have ios 4.2
i have seen apps on app store claim compatible iphones ios3 , above, , ipads.
any idea on how that? how test against different versions , how compile final version gets uploaded on app store.
to make app load in both ipad , iphone, make sure have 2 different xibs cater each device, @ application launch, check device whether it's ipad or iphone , load xib file accordingly.
ios3 , multitasking unsupported devices call applicationdidterminate method when home button pressed. ios4 onwards, make sure applicationdidenterbackground method implemented support multitasking. uncheck in info.plist file app not support multitasking (not recommended apple), ios call applicationdidterminate instead , app still usable in both ios3 & ios4.
cheers.
Comments
Post a Comment