我想知道如何使ViewController(或TTViewController)可滚动,例如长页?
我的第一次尝试(使框架更大)不起作用。
CGRect appFrame = [UIScreen mainScreen].applicationFrame;
CGRect frame = CGRectMake(0, 0, appFrame.size.width, appFrame.size.height + 200);
self.view = [[[UIView alloc] initWithFrame:frame] autorelease];
感谢
答案 0 :(得分:3)
将您的观点作为UIScrollView
中的子视图,并设置scrollview的contentSize以适合您的大页面。