Latest | 0.1.1 |
---|---|
Homepage | https://github.com/ablettchen/ATSheetView |
License | MIT |
Platforms | ios 8.0, requires ARC |
Dependencies | ATPopupView |
Frameworks | UIKit, Foundation |
Authors |
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
#import <ATSheetView/ATSheetView.h>
- Sheet – Default
NSArray *actions = @[ATPopupActionMake(@"Normal", ATPopupActionStyleNormal, block),
ATPopupActionMake(@"Highlighted", ATPopupActionStyleHighlighted, block),
ATPopupActionMake(@"Disabled", ATPopupActionStyleDisabled, block)];
ATSheetView *view =
ATSheetView.build.withTitle(title).withActions(actions);
view.showInWindow();
Requirements
Installation
ATSheetView is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod 'ATSheetView'
Author
ablett, [email protected]
License
ATSheetView is available under the MIT license. See the LICENSE file for more info.
Latest podspec
{ "name": "ATSheetView", "version": "0.1.1", "summary": "ActionSheet view", "homepage": "https://github.com/ablettchen/ATSheetView", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "ablett": "[email protected]" }, "source": { "git": "https://github.com/ablettchen/ATSheetView.git", "tag": "0.1.1" }, "social_media_url": "https://twitter.com/ablettchen", "platforms": { "ios": "8.0" }, "source_files": "ATSheetView/**/*.{h,m}", "requires_arc": true, "frameworks": [ "UIKit", "Foundation" ], "dependencies": { "ATPopupView": [] } }
Mon, 27 May 2019 10:08:11 +0000