I want to build universal app.
Can I use split view-based application for iPad that work universal app?
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.
UISplitViewController is available exclusively on the iPad, so you can’t use it on the iPhone. However, a universal app has separate XIBs for each category of device with the express intention of allowing you to provide entirely unrelated interfaces if appropriate. You therefore can use a UISplitViewController in a universal app, but only for the iPad part. You would possibly want to populate it with two controllers that are used directly on the iPhone.