使ViewController可滚动?

时间:2010-02-15 12:13:02

标签: iphone objective-c

我想知道如何使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];

感谢

1 个答案:

答案 0 :(得分:3)

将您的观点作为UIScrollView中的子视图,并设置scrollview的contentSize以适合您的大页面。