CheckSelectorViewController.h 555 B

12345678910111213141516171819
  1. //
  2. // CheckSelectorViewController.h
  3. // AntsContract
  4. //
  5. // Created by Ray on 12/22/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CheckSelectorViewController : UIViewController
  10. @property (strong, nonatomic) IBOutlet UITableView *tableView;
  11. @property (strong, nonatomic) NSArray* rowData;
  12. @property (strong, nonatomic) NSMutableArray* checkedData;
  13. @property bool single_select;
  14. @property bool show_detail;
  15. @property (nonatomic , copy) void (^blk_OK)(NSArray* checkedData);
  16. @end