我一直在尝试使用gdata Objective-c检索YouTube视频的描述。 我已经能够获得标题,但我如何获得描述?
标题代码:
GDataEntryBase *entry = [[feed entries] objectAtIndex:indexPath.row];
NSString *title = [[entry title] stringValue];
有什么想法吗?
答案 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;