-2
[urlDict setObject:urlStr forKey:@「url」];如何在iPhone應用程序中播放網址?
[urlArray addObject:urlDict];
//這裏urlArray我得到了波紋管的網址,
http://example.com/somevidya.AVI
如何發揮這個網址在iPhone應用程序?
[urlDict setObject:urlStr forKey:@「url」];如何在iPhone應用程序中播放網址?
[urlArray addObject:urlDict];
//這裏urlArray我得到了波紋管的網址,
http://example.com/somevidya.AVI
如何發揮這個網址在iPhone應用程序?
您可以將網址添加到像這樣的的MPMoviePlayerController。
MPMoviePlayerController *videoPlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
然後模態呈現它像這樣:
[[UIApplication sharedApplication].keyWindow.rootViewController presentModalViewController:video animated:YES];
並釋放錄像機:
[videoPlayer release];
謝謝你的迴應,但我可以在iphone應用程序中播放.avi文件 – 2012-01-31 12:29:43
在哪? Objective-C的? – anonymous 2012-01-28 07:14:26