Skip to content

Commit

Permalink
Start documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
seland committed Apr 4, 2016
1 parent b9f9d16 commit 0c0a19d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

#import <UIKit/UIKit.h>

/**
* View with CAGradientLayer layer class.
*/
@interface LUNGradientView : UIView

@end
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@

#import <UIKit/UIKit.h>

/**
* Category of UIView that provide method to remove set of constraints from view subtree.
*/
@interface UIView (LUNRemoveConstraints)

/**
* Remove specified set of constraints from views in receiver subtree and from receiver itself.
*
* @param constraints Set of constraints to remove.
*/
- (void)lun_removeConstraintsFromSubTree:(NSSet <NSLayoutConstraint *> *)constraints;

@end

0 comments on commit 0c0a19d

Please sign in to comment.