QMLeaveMessageCell.h 472 B

123456789101112131415161718192021
  1. //
  2. // QMLeaveMessageCell.h
  3. // IMSDK-OC
  4. //
  5. // Created by haochongfeng on 2017/11/27.
  6. // Copyright © 2017年 HCF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface QMLeaveMessageCell : UITableViewCell
  10. @property (nonatomic, strong) UILabel *fieldLabel;
  11. @property (nonatomic, strong) UITextField *textField;
  12. - (void)setData: (NSDictionary *)information defaultValue: (NSString *)value;
  13. @property (nonatomic, copy) void(^backInformation)(NSString *);
  14. @end