UIPageViewController changes size?
问题 I'm using the Page-Based Application template in Xcode 4 to load pages of a PDF and create a UITextView over hidden text boxes so the user can write notes. So far I have it all working, but when I add the UITextView, it's in the wrong place in landscape mode (showing 2 pages). // ModelController.m - (id)init { self = [super init]; if (self) { NSString *pathToPdfDoc = [[NSBundle mainBundle] pathForResource:@"My PDF File" ofType:@"pdf"]; NSURL *pdfUrl = [NSURL fileURLWithPath:pathToPdfDoc];