123456789101112131415161718192021 |
- //
- // QMLeaveMessageCell.h
- // IMSDK-OC
- //
- // Created by haochongfeng on 2017/11/27.
- // Copyright © 2017年 HCF. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface QMLeaveMessageCell : UITableViewCell
- @property (nonatomic, strong) UILabel *fieldLabel;
- @property (nonatomic, strong) UITextField *textField;
- - (void)setData: (NSDictionary *)information defaultValue: (NSString *)value;
- @property (nonatomic, copy) void(^backInformation)(NSString *);
- @end
|