i am trying to access the mobile data/ cellular data setting page which lists all the apps that have access to mobile/cellular data or internet.
I tried the below code:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let currentCell = featuresTable.cellForRow(at: indexPath)! as! HomeTableViewCell
if(currentCell.featureName!.text == "Internet Permissions")
{
// The code to enter the mobile data settings
let url = URL(string: "App-Prefs:root=MOBILEDATA")
let app = UIApplication.shared
app.openURL(url!)
}
}