// // JXMsgCellView.h // shiku_im // // Created by 123 on 2020/6/11. // Copyright © 2020 Reese. All rights reserved. // #import typedef void(^MsgCellViewBlock)(NSInteger tag); @interface JXMsgCellView : UIView @property (nonatomic,copy) NSString *hiddenTipl; @property (weak, nonatomic) IBOutlet UILabel *tipLabel; @property (nonatomic,copy) MsgCellViewBlock blockTap; +(instancetype)XIBMsgCellView; @end