ShowDetailVC.h 508 B

1234567891011121314151617181920212223
  1. //
  2. // ShowDetailVC.h
  3. // live1v1
  4. //
  5. // Created by ybRRR on 2019/8/2.
  6. // Copyright © 2019 IOS1. All rights reserved.
  7. //
  8. #import "YBBaseViewController.h"
  9. typedef void(^detailDeleteEvent)(NSString *type);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ShowDetailVC : UIViewController
  12. @property(nonatomic, copy) detailDeleteEvent deleteEvent;
  13. @property(nonatomic, strong)NSString * videoPath;
  14. @property(nonatomic, strong)NSString *fromStr;
  15. @property(nonatomic, strong)UIImage *thumbImg;
  16. @end
  17. NS_ASSUME_NONNULL_END