Skip to content

Instantly share code, notes, and snippets.

@spacedrabbit
Last active August 29, 2015 14:10
Show Gist options
  • Save spacedrabbit/56e0d267fa082fcc5302 to your computer and use it in GitHub Desktop.
Save spacedrabbit/56e0d267fa082fcc5302 to your computer and use it in GitHub Desktop.
UIView * bottomContentView = [[UIView alloc] init];
[bottomContentView setBackgroundColor:[UIColor darkGrayColor]];
[bottomScrollView addSubview:bottomContentView];
NSArray * contentView = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[bottomContentView]|"
options:0
metrics:nil
views:NSDictionaryOfVariableBindings(bottomContentView)];
NSArray * contentViewHeight = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[bottomContentView]|"
options:0
metrics:nil
views:NSDictionaryOfVariableBindings(bottomContentView)];
[bottomScrollView addConstraints:contentView];
[bottomScrollView addConstraints:contentViewHeight];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment