12345678910111213141516171819 |
- //
- // JXShadeShowView.h
- // shiku_im
- //
- // Created by os on 2020/7/11.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
-
- typedef void(^CancelSoundBlock)(JXMessageObject *messageObject);
- @interface JXShadeShowView : UIView
- @property (nonatomic,strong) JXMessageObject *messageObject;
- @property (nonatomic,copy) CancelSoundBlock cancelSoundBlock;
- +(void)showView;
- @end
-
|