AVPlayerView
AVPlayer module that implemented by subclass of UIView class
Install / Use
/learn @skswhwo/AVPlayerViewREADME
AVPlayerView
AVPlayer module that implemented by subclass of UIView class
- Support constraints and XIB implementation
- Support autoplay, loop mode
- Support appear, disappear callback
- Support tap gesture callback
- Support simple control
- Easy to use

Installation
AVPlayerView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "AVPlayerView"
And then run:
$ pod install
Usage
#import <AVPlayerView/CrAVPlayerView.h>
AVPlayerView *avPlayerView = [[AVPlayerView alloc] initWithFrame:CGRectMake(0, 0, 300, 200)];
NSString *path = [[NSBundle mainBundle] pathForResource:@"short" ofType:@"mp4"];
[avPlayerView playerWithContentURL:[NSURL fileURLWithPath:path]];
avPlayerView.autoplay = YES;
avPlayerView.loop = YES;
avPlayerView.dimmedEffect = YES;
avPlayerView.pauseWhenDisappear = YES; //default: true
avPlayerView.showControl = NO; //default: true
self.backgroundColorForFullSize = [UIColor blackColor]; //default: black
[avPlayerView setTapCallBack:^(AVPlayerView *playerView) {
if (playerView.isFullSize) {
[playerView normalSizeMode];
} else {
[playerView fullSizeMode];
}
}];
[self.avPlayerView setDidAppear:^(AVPlayerView *playerView) {
//do somthing;
}];
[self.avPlayerView setDidDisappear:^(AVPlayerView *playerView) {
//do somthing;
}];
[self.avPlayerView setFailure:^(AVPlayerView *playerView) {
//do somthing;
}];
NSString *path = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"mp4"];
[self.avPlayerView playerWithContentURL:[NSURL fileURLWithPath:path]];
self.pauseWhenDisappear = YES; //default: true
self.avPlayerView.showControl = YES; //default: true
self.backgroundColorForFullSize = [UIColor blackColor]; //default: black
[self.avPlayerView setTapCallBack:^(AVPlayerView *playerView) {
//do something;
}];
[self.avPlayerView setDidAppear:^(AVPlayerView *playerView) {
//do something;
}];
[self.avPlayerView setDidDisappear:^(AVPlayerView *playerView) {
//do something;
}];
[self.avPlayerView setFailure:^(AVPlayerView *playerView) {
//do somthing;
}];
Author
skswhwo, skswhwo@gmail.com
License
AVPlayerView is available under the MIT license. See the LICENSE file for more info.
Related Skills
node-connect
348.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
348.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
348.5kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
