Skip to content

UIView Category - Easy way to access view's frame, And provide easy way to layout UIViews programatically to maintain readability of code.

License

Notifications You must be signed in to change notification settings

uzysjung/UzysUIViewAddition

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

UzysUIViewAddition

Easy way to access view's frame, And provide easy way to layout UIViews programatically to maintain readability of code.

Installation

Copy over the files libary folder to your project folder

Add QuartzCore.Framework

Usage

Import header.

#import "UIView+UzysAddition.h"

####1. frame access

    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);

####2. View Layout in superView

    [self.viewMoving centerHorizontallyInSuperview];
    [self.viewMoving centerVerticallyInSuperview];
    [self.viewMoving centerInSuperview];

####2. View Layout in superView with Inset

    [self.viewMoving alignToTopInSuperviewWithInset:220];
    [self.viewMoving alignToBottomInSuperviewWithInset:220];
    [self.viewMoving alignToLeftInSuperviewWithInset:220];
    [self.viewMoving alignToRightInSuperviewWithInset:220];

####3. View Layout with otherView with Inset

    [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];

About

UIView Category - Easy way to access view's frame, And provide easy way to layout UIViews programatically to maintain readability of code.

Resources

License

Stars

Watchers

Forks

Packages

No packages published