IOS 视频播放实例

来源:互联网 发布:淘宝链接转换微信 编辑:程序博客网 时间:2024/05/01 12:17

作者:朱克锋

邮箱:zhukefeng@iboxpay.com

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

#define PATHSTRING @"http://.…."

-(void)myMovieFinishedCallback:(NSNotification*)aNotification

{

    MPMoviePlayerController* theMovie=[aNotificationobject];

    [[NSNotificationCenterdefaultCenter] removeObserver:selfname:MPMoviePlayerPlaybackDidFinishNotificationobject:theMovie];

    [theMovie release];

}

- (void) play: (UIBarButtonItem *) barBtnItem

{

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

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

[theMovie play];

}


原创粉丝点击