如何使用Unity打开iPhone设置?

时间:2019-02-26 14:56:33

标签: ios unity3d

我正在尝试为应用程序启用蓝牙,但是在iOS平台中,无法从Unity App启用蓝牙。 所以我想打开iPhone设置,然后手动启用蓝牙, 有没有办法从Unity App打开iPhone设置

我没有运气就尝试了以下代码

$ mkdir -p ~/.vim/pack/typescript/start $ cd ~/.vim/pack/typescript/start $ git clone https://github.com/leafgarland/typescript-vim.git

enter image description here
预先感谢

1 个答案:

答案 0 :(得分:0)

您可能必须为此在Xcode项目中创建一个函数,然后从Unity调用它。

我认为Apple不再允许您将用户导航到他们的特定页面,但是您可以提示用户启动“设置”应用并从那里启用蓝牙。

Apple为您提供一个字符串常量以打开设置应用程序。我建议您坚持这样做,因为它很容易更改。

UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)

引用自: Opening the Settings app from another app