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