酷店

MASLayoutConstraint.h 505B

1234567891011121314151617181920212223
  1. //
  2. // MASLayoutConstraint.h
  3. // Masonry
  4. //
  5. // Created by Jonas Budelmann on 3/08/13.
  6. // Copyright (c) 2013 Jonas Budelmann. All rights reserved.
  7. //
  8. #import "MASUtilities.h"
  9. /**
  10. * When you are debugging or printing the constraints attached to a view this subclass
  11. * makes it easier to identify which constraints have been created via Masonry
  12. */
  13. @interface MASLayoutConstraint : NSLayoutConstraint
  14. /**
  15. * a key to associate with this constraint
  16. */
  17. @property (nonatomic, strong) id mas_key;
  18. @end