TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
CEPopupPicker is a library that shows a UIPickerView at the bottom of the screen, just like the Facebook app. When the users taps outside the UIPickerView or taps the selected row, the popup dismisses and calls the delegate.
CEPopupPickerView is best installed via CocoaPods.
Put this somewhere in your view controller:
NSArray* values = [NSArray arrayWithObjects:@"Don", @"Peggy", @"Pete", nil];
CEPopupPickerView* popupPicker = [[CEPopupPickerView alloc] initWithValues:values callback:^(NSInteger selectedIndex) {
NSLog(@"you chose: %@", [values objectAtIndex:selectedIndex]);
}];
}
[popupPicker presentInView:self.view];
If you want to run an example, clone this project and open the XCode Project.
To run the tests, clone this project. Then run
pod install CEPopupPickerView.xcodeproj
This will generate a CEPopupPickerView.xcworkspace
, which you can then open.
Run the target "Integration Tests".
The tests use KIF and can be found in the group CEPopupPickerViewIntegrationTests
.