You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
494 B
26 lines
494 B
// |
|
// MASCompositeConstraint.h |
|
// Masonry |
|
// |
|
// Created by Jonas Budelmann on 21/07/13. |
|
// Copyright (c) 2013 cloudling. All rights reserved. |
|
// |
|
|
|
#import "MASConstraint.h" |
|
#import "MASUtilities.h" |
|
|
|
/** |
|
* A group of MASConstraint objects |
|
*/ |
|
@interface MASCompositeConstraint : MASConstraint |
|
|
|
/** |
|
* Creates a composite with a predefined array of children |
|
* |
|
* @param children child MASConstraints |
|
* |
|
* @return a composite constraint |
|
*/ |
|
- (id)initWithChildren:(NSArray *)children; |
|
|
|
@end
|
|
|