AFPopupView 1.0

AFPopupView 1.0

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

Maintained by Alvaro Franco.



  • By
  • Alvaro Franco

A simple to use and functional popup view for iOS, as seen in Wunderlist iOS app.

Preview

alt text

Usage

First of all, make sure that you've added to your project the QuartzCore framework.

Import AFPopupView to your class

#import "AFPopupView.h"

Declare AFPopupView

@property (nonatomic, strong) AFPopupView *popup;

Init the class with -popupWithView: assigning a valid UIView that will be shown. When you're ready to open the view, just call -show

_popup = [AFPopupView popupWithView:_modalTest.view];
[_popup show];

To hide it, call -hide

[_popup hide];

Author

Made by Alvaro Franco. If you have any question, feel free to drop me a line at [email protected]