特殊说明:此接口iOS只支持8.0+的系统.Android因各厂商系统不同导致权限设置页面无法统一,故此方法调用后跳转页面为应该详情页面
import { MUtils } from '@yl/super-jssdk';
MUtils.openPrefsSettings()
| 参数 | 类型 | 作用 |
|---|---|---|
| resolve | Function | 成功回调 |
| reject | Function | 失败回调 |
MUtils.openPrefsSettings()
.then(res => {
console.log('res', res);
}).catch(err => {
console.log('err', err);
})