JXMsgCellView.h 431 B

1234567891011121314151617181920
  1. //
  2. // JXMsgCellView.h
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/6/11.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^MsgCellViewBlock)(NSInteger tag);
  10. @interface JXMsgCellView : UIView
  11. @property (nonatomic,copy) NSString *hiddenTipl;
  12. @property (weak, nonatomic) IBOutlet UILabel *tipLabel;
  13. @property (nonatomic,copy) MsgCellViewBlock blockTap;
  14. +(instancetype)XIBMsgCellView;
  15. @end