Skip to content

Files

Latest commit

2d2bc36 · May 12, 2012

History

History
26 lines (17 loc) · 662 Bytes

readme.md

File metadata and controls

26 lines (17 loc) · 662 Bytes

UIView+Alignment

Tired of typing "CGRectMake" a million times for simple alignment stuff? Me too.

Here's an alignment category for UIView in iOS. See the .h file for method options and descriptions.

Examples

Align myView to the far left of its superview, with a 10px margin:

[myView alignTo:UIViewAlignmentLeft margins:UIEdgeInsetsMake(0,10,0,0)];

Align myView to the top-left of its superview:

[myView alignTo:(UIViewAlignmentTop | UIViewAlignmentLeft)];

Align myView bottom & centered in the given rect:

[myView alignTo:(UIViewAlignmentCenterHorizontal | UIViewAlignmentBottom) ofRect:otherRect];