patoroco / UIView-JMFrame

UIView category to help the handling of view frames.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#UIView+JMFrame Pod version Build Status

UIView category to help the handling of view frames.

Install

You can drop files on UIView+JMFrame or if you appreciate your time, add pod to your Podfile :)

pod 'UIView+JMFrame'

Example usage

Inside a UIViewController:

self.view.x = 5

Instead of UIKit way:

self.view.frame = CGRectMake(5, self.frame.origin.y, self.frame.size.width, self.frame.size.height);

Available methods

-(CGSize)size;
-(CGPoint)origin;

-(CGFloat)x;
-(CGFloat)y;
-(CGFloat)width;
-(CGFloat)height;

-(void)setX:(CGFloat)newX;
-(void)setY:(CGFloat)newY;
-(void)setWidth:(CGFloat)newWidth;
-(void)setHeight:(CGFloat)newHeight;

License

JMFrame is available under the MIT license. See the LICENSE file for more info.

About

UIView category to help the handling of view frames.

License:MIT License


Languages

Language:Objective-C 90.4%Language:Ruby 7.6%Language:Shell 2.1%