I want to tweak this code from Apple so that instead of using images for both views, I want to use xib instead:
ViewTransitionsAppDelegate.m
What would I have to do so that both views can be controlled and designed from separate XIB files?
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.
Create 2 XIB files, one with each
UIImageView, add and connect IBOutlet’s to each image view and load each XIB when required, with something like[NSBundle loadNibNamed:@"myImageView1" owner:self]and[NSBundle loadNibNamed:@"myImageView2" owner:self].