IOS视频循环播放实例

来源:互联网 发布:淘宝链接转换微信 编辑:程序博客网 时间:2024/06/10 16:00

作者:朱克锋

邮箱:zhukefeng@iboxpay.com

转载请注明出处:http://blog.csdn.net/linux_zkf


#define PATHSTRING @"http://。。。"


-(void)myMovieFinishedCallback:(NSNotification*)aNotification

{

    MPMoviePlayerController* theMovie=[aNotificationobject];

[theMovie play];

}


- (void) play: (UIBarButtonItem *) barBtnItem

{

MPMoviePlayerController* theMovie=[[MPMoviePlayerControlleralloc] initWithContentURL:[NSURLURLWithString:PATHSTRING]];


    [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(myMovieFinishedCallback:)name:MPMoviePlayerPlaybackDidFinishNotificationobject:theMovie];

[theMovie play];

}

原创粉丝点击