Minimum version for storyboard in xcode iphone

I am working on Storiesboards. I need to know the minimum version of ios that I can install to create a Build and submit to the App Store. Can I use ios 4.0 as a target. Will it work in versions below ios 5 ...? Is there any solution for this.?

Any help would be appreciated.

Thanks Vikas

+4
source share
2 answers

you may have seen the following error message: Storyboards are unavailable on iOS 4.3 and prior but, however, updating Xcode to the latest version (4.3.1) also does not help.

Here's the trick to change the design for the storyboard: iOS5 Storyboard error: Storyboards are not available in iOS 4.3 and earlier

 >Open XXXXXX.storyboard > >Open Identity and Type tag in your right view of Xcode. > >Set the value of Development in Document Versioning to "Xcode 4.2" (my default value is "Default Version (Xcode 4.1)". > >Change the value of Deployment from Project SDK Version (iOS 5.0) to iOS 5.0, then back to Project SDK Version (iOS 5.0) 
+6
source

iOS 5.0 is what introduces storyboard features.

If you look at this Apple page:

IOS 5 Release Notes

"Storyboards" is one of the great new features they introduced with this OS. This is not backward compatible.

If you want to support iOS 4, you should use good ol XIB files (which will also work in iOS 5 and later).

+5
source

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


All Articles