Guest User

Untitled

a guest
Jan 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. {
  2. [self setTranslatesAutoresizingMaskIntoConstraints:YES];
  3. [self addSubview:someView];
  4. [self addSubview:someOtherView];
  5. [self addConstraint:...];
  6. }
  7.  
  8. {
  9. [self.contentView addSubview:someView];
  10. [self.contentView addSubview:someOtherView];
  11. [self.contentView addConstraint:...];
  12. }
Add Comment
Please, Sign In to add comment