123456789101112131415161718192021222324 |
- //
- // Notify_SelectCityCell.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/6/23.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface Notify_SelectCityCell : UITableViewCell
- +(instancetype)cellForTableView:(UITableView *)tableView;
- @property(nonatomic,copy)NSString *title;
- @property(nonatomic,copy)void(^openBlock)();//展开回调
- - (void)updateWithStatus:(BOOL)status;//是否展开
- //@property(nonatomic,copy)void(^selectBlock)();//选中回调
- //- (void)updateSlcWithStatus:(BOOL)status;//是否选中
- @end
|