可以使用React Native的Linking。
Linking提供了一个通用的接口来与传入和传出的 App 链接进行交互。
import { Platform } from 'react-native'
let isIOS = Platform.OS === 'ios'
if (isIOS) {
Linking.openURL('app-settings:').catch(err => console.log('error', err))
// Linking.openURL('App-Prefs:MOBILE_DATA_SETTINGS_ID')
} else {
Linking.openSettings()
}