1234567891011121314151617181920 |
- //
- // JXMsgCellView.h
- // shiku_im
- //
- // Created by 123 on 2020/6/11.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|