1234567891011121314151617181920212223242526272829 |
- //
- // PBVideoPlayerView.h
- // PBSDK_Example
- //
- // Created by hello on 2024/12/25.
- // Copyright © 2024 uxiume. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBVideoPlayerView : UIView
- @property (nonatomic,strong) UIView *contentView;
- @property (nonatomic, assign ) BOOL isPortrait;
- @property (nonatomic,copy) void(^backCallBack)();
- @property (nonatomic,copy) void(^interfaceOrientationsCallBack)(BOOL);
- - (void)updateTitle:(NSString *)title;
- @end
- NS_ASSUME_NONNULL_END
|