| 12345678910111213141516171819 |
- //
- // CheckSelectorViewController.h
- // AntsContract
- //
- // Created by Ray on 12/22/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CheckSelectorViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UITableView *tableView;
- @property (strong, nonatomic) NSArray* rowData;
- @property (strong, nonatomic) NSMutableArray* checkedData;
- @property bool single_select;
- @property bool show_detail;
- @property (nonatomic , copy) void (^blk_OK)(NSArray* checkedData);
- @end
|