Latest | 1.2.0 |
---|---|
Homepage | https://github.com/casatwy/HandyAutoLayout |
License | MIT |
Platforms | ios 5.0, requires ARC |
Frameworks | UIKit |
Authors |
HandyAutoLayout
[
](http:// opensource.org/licenses/MIT)
HandyAutoLayout
are handy categories for generate NSLayoutConstraint programatically.
New features
Add new methods for 1.1.0
- (void)fromTheTop:(CGFloat)distance ofView:(UIView *)view;
- (void)fromTheBottom:(CGFloat)distance ofView:(UIView *)view;
- (void)fromTheLeft:(CGFloat)distance ofView:(UIView *)view;
- (void)fromTheRight:(CGFloat)distance ofView:(UIView *)view;
Install
if you are using AutoLayout:
pod 'HandyAutoLayout'
if you are using Frame:
pod 'HandyFrame'
Examples
for auto layout:
[self.view addConstraint:[self.tableView constraintCenterXEqualToView:self.view]];
[self.view addConstraint:[self.tableView constraintWidthEqualToView:self.view]];
[self.view addConstraints:[self.nextStepButton constraintsSize:CGSizeMake(300.0f, 40.0f)]];
[self.view addConstraint:[self.nextStepButton constraintCenterXEqualToView:self.view]];
for frame:
[self.subtitleLabel leftEqualToView:self.titleLabel];
[self.subtitleLabel top:14 FromView:self.timeLabel];
[self.createPost centerXEqualToView:self.view];
[self.createPost bottomInContainer:19.0f shouldResize:NO];
Latest podspec
{ "name": "HandyFrame", "version": "1.2.0", "summary": "handy methods for frame layout", "description": "this is a handy methods for frame layout.", "homepage": "https://github.com/casatwy/HandyAutoLayout", "license": "MIT", "authors": { "CasaTaloyum": "[email protected]" }, "platforms": { "ios": "5.0" }, "source": { "git": "https://github.com/casatwy/HandyAutoLayout.git", "tag": "1.2.0" }, "source_files": [ "UIView+LayoutMethods.h", "UIView+LayoutMethods.m" ], "frameworks": "UIKit", "requires_arc": true }
Fri, 13 Oct 2017 23:00:04 +0000