TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Easy way to access view's frame, And provide easy way to layout UIViews programatically to maintain readability of code.
Copy over the files libary folder to your project folder
Add QuartzCore.Framework
Import header.
#import "UIView+UzysAddition.h"
self.view.x = 5;
self.view.y = 10;
self.view.width = 100;
self.view.height = 200;
self.view.origin = CGPointMake(10, 10);
self.view.size = CGSizeMake(100, 100);
[self.viewMoving centerHorizontallyInSuperview];
[self.viewMoving centerVerticallyInSuperview];
[self.viewMoving centerInSuperview];
[self.viewMoving alignToTopInSuperviewWithInset:220];
[self.viewMoving alignToBottomInSuperviewWithInset:220];
[self.viewMoving alignToLeftInSuperviewWithInset:220];
[self.viewMoving alignToRightInSuperviewWithInset:220];
[self.viewMoving alignToBottomOfView:self.viewBase offset:5 align:UZYS_ALIGN_ANCHORPOINT_CENTER];
[self.viewMoving alignToTopOfView:self.viewBase offset:5 align:UZYS_ALIGN_ANCHORPOINT_CENTER];
[self.viewMoving alignToLeftOfView:self.viewBase offset:5 valign:UZYS_VALIGN_ANCHORPOINT_MIDDLE];
[self.viewMoving alignToRightOfView:self.viewBase offset:5 valign:UZYS_VALIGN_ANCHORPOINT_MIDDLE];