Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 GData Youtube 框架有疑问。我成功上传了我的视频。但我要问的是,是否可以在关闭我的 YouTubeViewController 后立即获取视频网址。我想将该链接存储在我的NSString变量中。谢谢。
NSString
你可以通过使用
NSString *url = [[[[videoEntry mediaGroup] mediaContents] objectAtIndex:0] URLString]; NSLog(@"Upload URL = %@", url);
在上传工单回调方法中。