在 ios react-native 中打开应用程序设置
Open apps settings in ios react-native
有什么方法可以使用 React Native Linking 打开 MYApp 的应用程序设置。
我正在关注 this 以获取应用偏好。但是除了 IOS.
中的根设置页面,我无法打开任何其他设置
例如:Linking.openURL('App-prefs:root=General&path=About');
我可以使用 react-native-open-settings 打开应用程序设置。
是否有任何方法可以使用 React Native 提供的链接 API 打开应用程序设置。
提前致谢。
这适用于我并打开我的应用程序设置:
Linking.openURL('app-settings://');
有什么方法可以使用 React Native Linking 打开 MYApp 的应用程序设置。
我正在关注 this 以获取应用偏好。但是除了 IOS.
中的根设置页面,我无法打开任何其他设置例如:Linking.openURL('App-prefs:root=General&path=About');
我可以使用 react-native-open-settings 打开应用程序设置。
是否有任何方法可以使用 React Native 提供的链接 API 打开应用程序设置。
提前致谢。
这适用于我并打开我的应用程序设置:
Linking.openURL('app-settings://');