Skip to content

Instantly share code, notes, and snippets.

@casspangell
Created April 12, 2012 19:25
Show Gist options
  • Save casspangell/2370329 to your computer and use it in GitHub Desktop.
Save casspangell/2370329 to your computer and use it in GitHub Desktop.
imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"scroller.png"]];
imageView.frame = CGRectMake(0, 375, kScrollObjWidth, kScrollObjHeight);
[scroller addSubview:imageView];
[scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(kScrollObjWidth, kScrollObjHeight)];
[scroller addSubview:imageView];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment