Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.