// // PBTextInputTableViewCell.h // IphoneBIMe // // Created by zjf on 2020/11/27. // Copyright © 2020 ProBIM. All rights reserved. // #import @class PBExamineAddModel; NS_ASSUME_NONNULL_BEGIN @interface PBTextInputTableViewCell : UITableViewCell @property (nonatomic, strong) PBExamineAddModel *examineAddModel; @property (nonatomic, copy) NSString *text; @property (nonatomic, copy) NSString *prompt; @property (nonatomic, copy) void (^endEditBlock)(NSString *text); @end NS_ASSUME_NONNULL_END