Latest | 0.2 |
---|---|
Homepage | https://github.com/GaSaMedia/GSComposeView |
License | MIT |
Platforms | ios 5.0, requires ARC |
Authors |
GSComposeView is a simple compose view for getting text input from the user.
Get started
Podfile
platform :ios
pod "GSComposeView"
Requirements
GSComposeView requires Xcode 4/5, targeting iOS 5.0 and above.
Basic usage
Show GSComposeView without text
[GSComposeView showWithCompletionBlock:^(NSString *text) {
_exampleTextView.text = text;
}];
Show GSComposeView with initial text for editing
[GSComposeView showText:_exampleTextView.text withCompletionBlock:^(NSString *text) {
_exampleTextView.text = text;
}];
Credits
GSComposeView is partly based upon SVProgressHUD
Contact
Follow GaSa Media on Twitter @gasamedia
License
GSComposeView is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "GSComposeView", "version": "0.2", "summary": "GSComposeView is a simple compose view for getting text input from the user.", "homepage": "https://github.com/GaSaMedia/GSComposeView", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "GaSa Media": "[email protected]" }, "social_media_url": "https://twitter.com/gasamedia", "platforms": { "ios": "5.0" }, "source": { "git": "https://github.com/GaSaMedia/GSComposeView.git", "tag": "0.2" }, "source_files": [ "GSComposeView", "GSComposeView/GSComposeView.{h,m}" ], "requires_arc": true }
Sun, 06 Mar 2016 22:40:05 +0000