I am trying to get my view controller to scroll, but it won't work. Any clue to what's wrong?
UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0,0,320,480)];
scroll.contentSize = CGSizeMake(320, 480);
[self.view addSubview:scroll];
GGBoxView *boxee = [[GGBoxView alloc] initWithFrame:CGRectMake(12, 56, 144, 120)];
[scroll addSubview:boxee];
This code is part of my GGViewController class.