mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-04-23 15:29:00 +00:00
19 lines
351 B
C
19 lines
351 B
C
|
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface VideoView : UIView
|
||
|
|
||
|
-(void) setPosition:(float)left top:(float)top;
|
||
|
-(void) play:(NSString*)url listenProgress:(bool)listenProgress;
|
||
|
-(void) pause;
|
||
|
-(void) resume;
|
||
|
-(void) close;
|
||
|
-(void) setFullScreen:(bool)value;
|
||
|
-(void) seekToTime:(int)seconds;
|
||
|
-(void) showBar:(bool)value;
|
||
|
-(void) lockSeek:(bool)value;
|
||
|
|
||
|
@end
|
||
|
|