在 iOS 上启动带有视频的 YouTube 应用
我需要这样做:我有一个带有按钮的应用程序,我希望当我单击该按钮时,iPhone 会直接启动 YouTube 应用程序,并准备好开始播放我的视频。 我已经尝试过:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=my_video_id"]];
但在视频页面中启动 safari。
I need to do this: I have an app with a button, I wish, when I click the button that the iPhone launch youtube app with directly my video ready to start to play..
I've tried this:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=my_video_id"]];
but launch safari in the video page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果按钮是本机 Cocoa Touch 应用程序中的 UIButton,那么这确实应该有效。你的按钮是 UIWebView 中的 HTML 按钮吗?
That really should work if the button is a UIButton in a native Cocoa Touch app. Is yours an HTML button in a UIWebView?