tommi
tommi

Reputation: 6973

App with Embed segues on iOS 5.0 and below

I have an app on the app store which Requires iOS 5.0 or later. I just loaded my project with Xcode 5, and I saw the error message Class Unavailable Embed segues are not available on iOS 5.1 and prior. Does this imply that any users who are still using iOS 5.0 and below could download the app but it is not usable because of the embedded segues

Upvotes: 0

Views: 236

Answers (1)

Levi
Levi

Reputation: 7343

If you are using Embed segues on iOS 5 it will crash the app. You should replace that by adding the embedded ViewController as childViewController and it's view as subview.

Upvotes: 1

Related Questions