Delete xcode 4.2 iOS 5 storyboard?

I created a project in xcode 4.2 using the storyboard function. I did most of the work, but now I found out that storyboards are not available on pre-iOS 5. Is there a way to remove this storyboard from a project without creating a new project? I don't want to do all the work again ... any suggestions?

+6
source share
1 answer

Delete the base name of the main waste in the Info.plist file and add the name "Main nib" (that is, MainWindow in the standard templates) or specify the name of the application delegate class UIApplicationMain() in main.m

+20
source

Source: https://habr.com/ru/post/899279/


All Articles