123456789101112131415161718192021222324 |
- //
- // Notify_SelectCityHeaderView.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/6/22.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @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
|