iOS 6 introduced the Embed Segue, allowing custom container controllers to be used in Storyboards. Is there anyway to duplicate this for iOS 5?
iOS 6 introduced the Embed Segue, allowing custom container controllers to be used in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I duplicated the functionality by subclassing UIStoryboardSegue.
In Interface Builder, I create a custom segue and set its’ class to my subclass (QCEmbedSegue). In my parent view controller’s
viewDidLoad, I callperformSegueWithIdentifier:sender.QCEmbedSegue simply overrides
perform:http://www.quentamia.com/blog/embed-segue-in-ios-5/