0

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

标题代码:

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

有任何想法吗?

4

2 回答 2

0

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

但是旧的基于 XML 的 GData 库不再适合与 YouTube API 一起使用。应该使用较新的基于 JSON 的库。JSON API 中的视频描述在此处记录。

于 2013-01-19T05:48:21.643 回答
0
    NSString *description=[(GDataEntryYouTubeVideo *)entry mediaGroup].mediaDescription.stringValue;
于 2013-08-28T21:09:07.170 回答