如何检测手机应用程序是否适用于使用 iPhone 操作系统的各种设备

发布于 2024-08-04 08:45:38 字数 201 浏览 2 评论 0原文

我想显示或隐藏一个按钮,让用户根据用户是否可以实际拨打电话(iPhone 或 iPod touch)来拨打电话。是否可以以某种方式检测用户是否可以在 cocoa-touch 中使用手机应用程序?或者我是否必须检测设备类型才能进行区分?我宁愿检查功能而不是静态客户端,以防由于某种原因发生某些变化(并不是说 iPod touch 用户无论如何都可以拨打非 voip 电话,但代码会更干净)。

I'd like to show or hide a button that lets a user make a phone call based on whether or not the user can actually make a call (iPhone or iPod touch). Is it possible to somehow detect if the phone app is available to the user in cocoa-touch? Or am i constrained to detecting the device type to make that distinction? I would rather check for functionality than static clients in case something changes down the line for whatever reason (not that iPod touch users could ever make non-voip phone calls anyways, but the code would be cleaner).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的笑 2024-08-11 08:45:38
BOOL canMakePhoneCalls = [[UIApplication sharedApplication]
                           canOpenURL:[NSURL URLWithString:@"tel:5555555"]];
BOOL canMakePhoneCalls = [[UIApplication sharedApplication]
                           canOpenURL:[NSURL URLWithString:@"tel:5555555"]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文