Skip to content

Instantly share code, notes, and snippets.

@probablycorey
Created June 22, 2010 16:28
Show Gist options
  • Select an option

  • Save probablycorey/448704 to your computer and use it in GitHub Desktop.

Select an option

Save probablycorey/448704 to your computer and use it in GitHub Desktop.
- (void)viewDidLoad
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];
v.autoresizingMask = UIViewAutoresizingFlexibleHeight;
v.backgroundColor = [UIColor redColor];
[self.scrollView addSubview:v];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment