SChooseAreaView.h 1.2 KB

123456789101112131415161718192021222324252627
  1. //
  2. // SChooseAreaView.h
  3. //
  4. //
  5. // Created by 丁凯 on 2017/8/21.
  6. #import <UIKit/UIKit.h>
  7. @interface SChooseAreaView : BGBaseView<UITableViewDelegate,UITableViewDataSource>
  8. @property ( nonatomic, strong) NSMutableArray *imageArray; //性别头像
  9. @property ( nonatomic, strong) NSMutableArray *nameArray; //性别
  10. @property ( nonatomic, strong) UIButton *bottomBtn; //性别下面的黄色view
  11. @property ( nonatomic, strong) NSMutableArray *dataArray; //数据源
  12. @property ( nonatomic, strong) UITableView *myTableView; //tableView
  13. @property ( nonatomic, assign) int sexType; //性别类型
  14. @property ( nonatomic, assign) int selectRow; //选择的row
  15. @property ( nonatomic, strong) UIButton *finishBtn; //完成
  16. @property ( nonatomic, copy) NSString *chooseAreaStr; //选择的城市
  17. //@property ( nonatomic, strong) BGNoContentView *noContentView; //无内容视图
  18. @property ( nonatomic, copy) void (^areaBlock)(NSString *areStr, int sexType);
  19. - (id)initWithFrame:(CGRect)frame andChooseType:(int)areaType andAreaStr:(NSString *)areaStr;
  20. @end