gpt4 book ai didi

iphone - 如何在我的 iPhone 应用程序中启动 YouTube 视频?

转载 作者:太空狗 更新时间:2023-10-30 03:28:26 24 4
gpt4 key购买 nike

在我的应用程序上,我需要一个按钮,所以当它被点击时,一个 YouTube 视频就会启动。

那么我该如何实现呢?

最佳答案

iOS 设备具有可识别的 URL 架构。像下面这样构建您的 YouTube 网址:

http://www.youtube.com/watch?v=VIDEO_IDENTIFIER

这将在设备上启动 YouTube 播放器。

NSString *videoName = @"1JynBEX_kg8";
NSString *string = [NSString stringWithFormat:@"http://www.youtube.com/watch?v=%@", videoName];
NSURL *url = [NSURL URLWithString:string];
UIApplication *app = [UIApplication sharedApplication];
[app openURL:url];

有关 iOS URL Scheme 的更多信息 Apple URL Scheme Reference .

关于iphone - 如何在我的 iPhone 应用程序中启动 YouTube 视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5439179/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com