-
Notifications
You must be signed in to change notification settings - Fork 0
Usage
Andrei Popescu edited this page Aug 2, 2024
·
1 revision
@property (strong, nonatomic) UIAPPicker *apPicker;
- (UIAPPicker *)apPicker
{
if (!_apPicker) {
_apPicker = [UIAPPicker pickerForView:self.view delegate:self];
}
return _apPicker;
}[self.apPicker show:@[@"Moscow", @"New York", @"Paris", @"Berlin", @"Ankara"] withSelectedRow:0];@protocol UIAPPickerDelegate
- (void)pickerDidCancel:(UIAPPicker *)anPicker;
- (void)picker:(UIAPPicker *)anPicker didSelectItem:(id)anItem;
@end