Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zackbraksa/brkpushview
iOS library to make your UITextView Slide UP
https://github.com/zackbraksa/brkpushview
Last synced: 25 days 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 (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-18T20:20:55.000Z (almost 11 years ago)
- Last Synced: 2024-12-11T19:55:27.185Z (30 days ago)
- Language: Objective-C
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 2
- 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.