我一直在尝试使用gdata Objective-c检索youtube视频的描述。我已经能够获得标题,但我如何获得描述?
标题代码:
GDataEntryBase *entry = [[feed entries] objectAtIndex:indexPath.row];
NSString *title = [[entry title] stringValue];
任何想法?
在Objective-C的GData库中,YouTube视频的类应该是GDataEntryYouTubeVideo,而不是GDataEntryBase。
但是旧的基于xml的GData库不再适合与YouTube API一起使用。应该使用更新的基于json的库。JSON API中的视频描述文档在这里
NSString *description=[(GDataEntryYouTubeVideo *)entry mediaGroup].mediaDescription.stringValue;