我想在我的項目中使用PSYouTubeExtractor,它應該幫助顯示YouTube視頻內嵌下載mp4或顯示在Web視圖中。PSYouTubeExtractor錯誤,同時提取
這裏是我是如何實現它至今:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[PSYouTubeExtractor extractorForYouTubeURL:[deskUrls objectAtIndex:indexPath.row] success:^(NSURL *URL) {
NSLog(@"Finished extracting: %@", URL);
// show the movie!
} failure:^(NSError *error) {
NSLog(@"Failed to query mp4: %@", error);
}];
}
deskUrl
是:this link例如,雖然這會提取發生錯誤:
[PSYouTubeExtractor doRetry_] [Line 105] Trying to load page...
2012-09-30 17:50:40.054 Tube[3378:907] -[__NSCFString absoluteURL]: unrecognized selector sent to instance 0x21027eb0
好了,我不明白爲什麼,因爲這是應該如何完成的。在開發人員here的github頁面上,這只是相同的代碼。
任何人有一個想法如何解決這個問題?
爲什麼不使用新版本? [LBYouTubeView](https://github.com/larcus94/LBYouTubeView) –