/**loadView加载,将系统的view变换成ScrollView*/
- (void)loadView{
[super loadView];
UIScrollView *mainScroll = [[UIScrollView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
mainScroll.scrollEnabled = YES;
mainScroll.contentSize = CGSizeMake(0, VIEW_MAIN_SCREEN_HEIGHT + 40);
mainScroll.userInteractionEnabled = YES;
mainScroll.showsVerticalScrollIndicator = NO;
mainScroll.multipleTouchEnabled = YES;
self.view = mainScroll;
}
原文:http://www.cnblogs.com/TheYouth/p/4994162.html