Мне было интересно, как сделать прокручиваемый 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];
спасибо