JXShadeShowView.h 403 B

12345678910111213141516171819
  1. //
  2. // JXShadeShowView.h
  3. // shiku_im
  4. //
  5. // Created by os on 2020/7/11.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^CancelSoundBlock)(JXMessageObject *messageObject);
  10. @interface JXShadeShowView : UIView
  11. @property (nonatomic,strong) JXMessageObject *messageObject;
  12. @property (nonatomic,copy) CancelSoundBlock cancelSoundBlock;
  13. +(void)showView;
  14. @end