-2
[urlDict setObject:urlStr forKey:@ "url"];iphoneアプリケーションでurlを再生するには?
[urlArray addObject:urlDict];
//ここurlArrayで私が怒鳴るのURL、iphoneのアプリケーションでこのURLを再生する方法
http://example.com/somevidya.AVI
を得ましたか。
[urlDict setObject:urlStr forKey:@ "url"];iphoneアプリケーションでurlを再生するには?
[urlArray addObject:urlDict];
//ここurlArrayで私が怒鳴るのURL、iphoneのアプリケーションでこのURLを再生する方法
http://example.com/somevidya.AVI
を得ましたか。
このように、MPMoviePlayerControllerにURLを追加できます。
[[UIApplication sharedApplication].keyWindow.rootViewController presentModalViewController:video animated:YES];
とのVideoPlayerをリリース:
MPMoviePlayerController *videoPlayer = [[MPMoviePlayerController alloc] initWithContentURL:url];
そのようにのようなモーダルそれを提示するもので
[videoPlayer release];
お返事ありがとうございますが、iphoneアプリケーションで.aviファイルを再生できますか –
を?目標-C? – anonymous