blob: 5eda2a263753f200b73f1b2a358044cf5c6de4dd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#import <UIKit/UIKit.h>
@interface MuChoiceFieldController : UIViewController<UIPickerViewDataSource, UIPickerViewDelegate>
{
void (^okayBlock)(NSArray *);
NSArray *choices;
int selected;
}
- (id)initWithChoices:(NSArray *)choices okayAction:(void (^)(NSArray *))block;
@end
|