Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/casatwy/HandyAutoLayout
handy categories for generate NSLayoutConstraint programmatically, and layout your Frame easy
https://github.com/casatwy/HandyAutoLayout
Last synced: 6 days ago
JSON representation
handy categories for generate NSLayoutConstraint programmatically, and layout your Frame easy
- Host: GitHub
- URL: https://github.com/casatwy/HandyAutoLayout
- Owner: casatwy
- License: other
- Created: 2014-08-28T07:56:26.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-28T14:29:54.000Z (over 6 years ago)
- Last Synced: 2024-09-27T11:31:29.113Z (about 2 months ago)
- Language: Objective-C
- Homepage:
- Size: 35.2 KB
- Stars: 1,263
- Watchers: 52
- Forks: 249
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HandyAutoLayout
[![CocoaPods compatible](https://img.shields.io/badge/CocoaPods-0.1.1-green.svg?style=flat)](https://cocoapods.org) [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](http:// opensource.org/licenses/MIT)
`HandyAutoLayout` are handy categories for generate NSLayoutConstraint programatically.
# New features
## Add new methods for 1.1.0
```objective-c
- (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;
```
# Installif you are using AutoLayout:
```
pod 'HandyAutoLayout'
```if you are using Frame:
```
pod 'HandyFrame'
```# Examples
for auto layout:
```objective-c
[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:```objective-c
[self.subtitleLabel leftEqualToView:self.titleLabel];
[self.subtitleLabel top:14 FromView:self.timeLabel];[self.createPost centerXEqualToView:self.view];
[self.createPost bottomInContainer:19.0f shouldResize:NO];
```