| 12345678910111213141516171819202122232425 |
- //
- // RAYTPlayer.h
- // iSales-UWAVER
- //
- // Created by Rui Zhang on 11/26/19.
- // Copyright © 2019 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <WebKit/WebKit.h>
- NS_ASSUME_NONNULL_BEGIN
- // youtube 无法全屏播放,怀疑是google 做了限制,嵌入 blibli 源可以正常全屏
- @interface RAYTPlayer : UIView<WKNavigationDelegate>
- @property (nonatomic, strong, nullable, readonly) WKWebView *wkwebView;
- -(void)LoadWithVid:(NSString *)vid;
- -(void)LoadFromURL:(NSString *)vid;
- - (void)stopVideo;
- @end
- NS_ASSUME_NONNULL_END
|