Skip to content

Instantly share code, notes, and snippets.

@joshdholtz
Created February 18, 2012 21:35
Show Gist options
  • Save joshdholtz/1861072 to your computer and use it in GitHub Desktop.
Save joshdholtz/1861072 to your computer and use it in GitHub Desktop.
Load Nib into UIScrollView
NSArray *nibContents = [[NSBundle mainBundle] loadNibNamed:@"AddNewProductScrollView" owner:self options:nil];
UIView *myView = [nibContents objectAtIndex:0];
[scrollView addSubview: myView];
[scrollView setContentSize:CGSizeMake(myView.frame.size.width, myView.frame.size.height)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment