Notify_SelectCityCell.h 565 B

123456789101112131415161718192021222324
  1. //
  2. // Notify_SelectCityCell.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/6/23.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface Notify_SelectCityCell : UITableViewCell
  10. +(instancetype)cellForTableView:(UITableView *)tableView;
  11. @property(nonatomic,copy)NSString *title;
  12. @property(nonatomic,copy)void(^openBlock)();//展开回调
  13. - (void)updateWithStatus:(BOOL)status;//是否展开
  14. //@property(nonatomic,copy)void(^selectBlock)();//选中回调
  15. //- (void)updateSlcWithStatus:(BOOL)status;//是否选中
  16. @end