是否能提供ios跳转到手机设置的api

小程序开发相关产品技术讨论,包括面板、智能小程序、React Native、Ray跨端框架、Panel SDK、微信小程序、小程序开发工具(IDE)及其他开发技术相关等话题


Post Reply
MwM-Mai
Posts: 134

android 可以通过openSystemBluetoothSetting 这个api跳转到手机蓝牙设置页面,
ios是否也能提供一个类似的api,可以跳转到设置页面, 不一定要跳转蓝牙设置页面,可以跳转到设置首页


Tags:
智能小程序开发者
Posts: 200

Re: 是否能提供ios跳转到手机设置的api

你好,你可以使用ty.openSystemSettingPage这个API,后续我们会封装一个ray版本的

Code: Select all

export function openSystemSettingPage(params: {
  /** 接口调用结束的回调函数(调用成功、失败都会执行) */
  complete?: () => void
  /** 接口调用成功的回调函数 */
  success?: (params: null) => void
  /** 接口调用失败的回调函数 */
  fail?: (params: {
    errorMsg: string
    errorCode: string | number
    innerError: {
      errorCode: string | number
      errorMsg: string
    }
  }) => void
}): void
Post Reply