blob: a9742282774a3275ac6c1b89694bbb10662780eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// MuChoiceFieldController.h
// MuPDF
//
// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//
#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
|