如何检索Objective-c GData视频描述?

时间:2013-01-19 01:38:08

标签: objective-c xcode youtube-api

我一直在尝试使用gdata Objective-c检索YouTube视频的描述。 我已经能够获得标题,但我如何获得描述?

标题代码:

GDataEntryBase *entry = [[feed entries] objectAtIndex:indexPath.row];
NSString *title = [[entry title] stringValue];

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

Objective-C GData库中的YouTube视频类将是GDataEntryYouTubeVideo,而不是GDataEntryBase。

但旧的基于XML的GData库不再适合与YouTube API一起使用。应该使用newer JSON-based library代替。 JSON API中的视频说明记录为here

答案 1 :(得分:0)

    NSString *description=[(GDataEntryYouTubeVideo *)entry mediaGroup].mediaDescription.stringValue;