123456789101112131415161718192021 |
- #import <UIKit/UIKit.h>
- @interface PDFSettingsValueViewController : UIViewController
- @property (nonatomic,retain) NSArray<NSString *> *dataSource;
- @property (nonatomic,assign) NSInteger selectedIndex;
- @property (nonatomic,copy) void (^callback) (NSUInteger selectedIndex);
- @end
|