SigmaticUI 2.2

SigmaticUI 2.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Aug 2015

Maintained by Hisham.



  • By
  • Hisham Alabri

Sigmatic UI

Overview

Take back control of your views and controllers.
Sigmatic UI allows you to easily manage your views and view controllers from anywhere in your application.

Installation

SigmaticUI is available through CocoaPods. To install the library, simply add the following line to your Podfile:

pod "SigmaticUI"


Or if you are only interested in a subspec, use

pod "SigmaticUI/<Subspec>"
#example
pod "SigmaticUI/ControllerExpansion"

Available Subspecs

UIView

Easily change view dimensions and location. Move and align with respect to the superview or a sibling view.

[submitButton setWidth:cancelButton.width];
[submitButton alignRightOfView:cancelButton margin:7.f];


Find all input text fields for any view and easily implement a 'Next' 'Previous' buttons on your keyboard. Already sorted based on their location on screen.

[formView textInputSubviews];


And many many more features

UIViewController

Receive callbacks for when the view has first appeared

- (void)firstViewWillAppear:(BOOL)animated {
}

- (void)firstViewDidAppear:(BOOL)animated {
}



Check whether the view is visible

if (myViewController.isVisible) {
}


Documentation

CocoaDocs

Contribution

Can't say no to that!

License

SigmaticUI is released under the MIT license. See LICENSE for details.