ATPickerView
Example
To run the example project, clone the repo, and run pod install from the Example directory first.
#import <ATPickerView/ATPickerView.h>- Picker - Default
NSArray *items = @[@"语法课", @"自然拼读", @"阅读练习"];
ATPickerView *view = \
ATPickerView.build.withTitle(title).withItems(items).showInWindow();
view.confirmBlock = ^(NSInteger index) {
NSLog(@"selected:%@", items[index]);
};Requirements
Installation
ATPickerView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'ATPickerView'Author
ablett, [email protected]
License
ATPickerView is available under the MIT license. See the LICENSE file for more info.
