Page 1 of 1

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

Posted: 2024年 Jun 24日 11:41
by MwM-Mai

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


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

Posted: 2024年 Jun 25日 18:17
by 智能小程序开发者

你好,你可以使用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