Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete storyboard xcode 4.2 iOS 5?

I created a project in xcode 4.2 using the feature of storyboard. I have done most of the work but now i came to know that storyboards are not available in pre-iOS 5 devices. Is there any way to remove this storyboard from the project without creating a new project? I don't want to do all the work again... any suggestions?

like image 816
Saleh Avatar asked Oct 14 '11 08:10

Saleh


People also ask

How do I get rid of storyboard in Xcode?

Navigate to the Info. Plist file on the left side. Under the keys, Application Scene Manifest > Scene Configuration > Application Session Role > Item 0 (Default Configuration), select the string “Storyboard Name” and delete it with the minus button.

How do I delete a view controller from storyboard?

To delete the View Controller from the storyboard, select the View Controller by clicking the Show Document Outline icon and then clicking on View Controller Scene in the Document Outline. Then press Backspace or choose Edit > Delete.

Where is the storyboard in Xcode?

Accessing the Storyboard Select this file in the project navigator panel to view the storyboard canvas as illustrated in Figure 25 1. The view displayed on the canvas is the view for the ViewController class created for us by Xcode when we selected the Single View Application template.


1 Answers

Delete the "Main Storyboard base name" in your Info.plist file and add a "Main nib" name (what was MainWindow in standard templates) or supply your app delegate class name to UIApplicationMain() in main.m

like image 99
Martin Ullrich Avatar answered Jan 01 '23 22:01

Martin Ullrich