PBVideoPlayerView.h 521 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PBVideoPlayerView.h
  3. // PBSDK_Example
  4. //
  5. // Created by hello on 2024/12/25.
  6. // Copyright © 2024 uxiume. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PBVideoPlayerView : UIView
  11. @property (nonatomic,strong) UIView *contentView;
  12. @property (nonatomic, assign ) BOOL isPortrait;
  13. @property (nonatomic,copy) void(^backCallBack)();
  14. @property (nonatomic,copy) void(^interfaceOrientationsCallBack)(BOOL);
  15. - (void)updateTitle:(NSString *)title;
  16. @end
  17. NS_ASSUME_NONNULL_END