如何在iphone中通过iphone下载youtubevideo

可能重复:
在应用程序中保存Youtubevideo到iPhone

有没有任何SDK或方式下载iphone iphone程序的youtubevideo。

请帮我一样。

提前致谢。

问候,

如果您打算将该应用程序发布到AppStore,我不会build议您离开该选项。 Youtube规则不允许这样做,而且苹果现在正在关注他们,尽pipeAppStore上的应用程序已经启用了该function。 我的一个朋友试图添加离线播放他的Youtube播放器应用程序,并因此被拒绝。

  1) Get the NSURL Object First using url string. 2) Allocate and start an NSURLConnection to fetch the file from the URL. Do not use sendSynchronousRequest:returningResponse:error 3) In the connection:didReceiveResponse: delegate method, create NSData object 4) In the connection:didReceiveData: delegate method, get the data and append it to NSData object 5) play the video using MPMoviePlayerController after getting data.