android 可以通过openSystemBluetoothSetting 这个api跳转到手机蓝牙设置页面,
ios是否也能提供一个类似的api,可以跳转到设置页面, 不一定要跳转蓝牙设置页面,可以跳转到设置首页
是否能提供ios跳转到手机设置的api
是否能提供ios跳转到手机设置的api
Tags:
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