// // Notify_SelectCityHeaderView.h // LNManager // // Created by EchoShacolee on 2017/6/22. // Copyright © 2017年 lee. All rights reserved. // #import @interface Notify_SelectCityHeaderView : UITableViewHeaderFooterView +(instancetype)cellHeaderViewForTableView:(UITableView *)tableView; @property(nonatomic,copy)void(^openBlock)();//展开回调 - (void)updateWithStatus:(BOOL)status;//是否展开 @property(nonatomic,copy)void(^selectBlock)();//选中回调 @property(nonatomic,copy)NSString *title; @property(nonatomic,assign)BOOL EditStatus;//是否编辑状态 @end