TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A custom view component containing a customizable UITextView
that gets pushed up from the bottom of the screen with a slow and nice animation.
Add the dependency to your Podfile
:
platform :ios
...
pod 'BRKPushView'
...
Run pod install
to install the dependencies.
Next, import the header file wherever you want to use BRKPushView
:
#import <BRKPushView/BRKPushView.h>
Finally, present the picker when necessary (say on a button touch handler):
BRKPushView *viewToPush = [[BRKPushView alloc] initWithText:@"Say Hello to PushView!"];
[viewToPush presentInView:self.view];
//TODO : Add GIF of demo here.
Usage is provided under the MIT License. See LICENSE for the full details.