Notify_SelectCityHeaderView.h 603 B

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