https://github.com/zackbraksa/brkpushview
iOS library to make your UITextView Slide UP
https://github.com/zackbraksa/brkpushview
Last synced: 3 months ago
JSON representation
iOS library to make your UITextView Slide UP
- Host: GitHub
- URL: https://github.com/zackbraksa/brkpushview
- Owner: zackbraksa
- License: mit
- Created: 2014-03-18T20:10:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-18T20:20:55.000Z (over 11 years ago)
- Last Synced: 2025-04-02T10:40:29.759Z (3 months ago)
- Language: Objective-C
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
BRKPushView
=================## BRKPushView
A custom view component containing a customizable `UITextView` that gets pushed up from the bottom of the screen with a slow and nice animation.
## Usage
Add the dependency to your `Podfile`:
```ruby
platform :ios
...
pod 'BRKPushView'
...
```Run `pod install` to install the dependencies.
Next, import the header file wherever you want to use `BRKPushView `:
```objc
#import
```Finally, present the picker when necessary (say on a button touch handler):
```objc
BRKPushView *viewToPush = [[BRKPushView alloc] initWithText:@"Say Hello to PushView!"];[viewToPush presentInView:self.view];
```## Demo
//TODO : Add GIF of demo here.
## License
Usage is provided under the [MIT License](http://http://opensource.org/licenses/mit-license.php). See LICENSE for the full details.