MASCompositeConstraint.h 494 B

1234567891011121314151617181920212223242526
  1. //
  2. // MASCompositeConstraint.h
  3. // Masonry
  4. //
  5. // Created by Jonas Budelmann on 21/07/13.
  6. // Copyright (c) 2013 cloudling. All rights reserved.
  7. //
  8. #import "MASConstraint.h"
  9. #import "MASUtilities.h"
  10. /**
  11. * A group of MASConstraint objects
  12. */
  13. @interface MASCompositeConstraint : MASConstraint
  14. /**
  15. * Creates a composite with a predefined array of children
  16. *
  17. * @param children child MASConstraints
  18. *
  19. * @return a composite constraint
  20. */
  21. - (id)initWithChildren:(NSArray *)children;
  22. @end