我正在使用 YouTube API 非常简单地获取一些视频并将它们显示在我的 iPhone 应用程序的 UITableView 中,
问题是这样的:
1.视频的观看次数总是返回null
2.我没有得到视频上传的名称。
这是我的代码
NSString *title = [[entry title] stringValue];
NSString *viewCount=[[[(GDataEntryYouTubeVideo *)entry statistics]viewCount] stringValue];
NSLog(@"%@",viewCount); // returns null
NSArray *thumbnails = [[(GDataEntryYouTubeVideo *)entry mediaGroup] mediaThumbnails];
谢谢。