Can I call the WiFi list screen displayed in the control panel of IOS 13 in my personal app?


In IOS 13, select WiFi from the control panel, and the WiFi list will pop up. I want to call this Wifi screen in my application. If not, how to directly jump to the WiFi list screen entered from the setting ?
You can navigate directly to various parts of the Settings app with a URL, but I'd recommend against it for a few key reasons:
  1. These URLs are entirely undocumented

  2. Apple can and will change these URLs in future versions of iOS

  3. Most crucially, Apple has at various times treated the use of these URLs as using private APIs, and rejected app submissions which make use of them

Given those disclaimers, the URL to launch directly into the Wi-Fi settings is prefs:root=WIFI

Thank you very much for your reply.
Because it is a private API, it cannot be used in our project.
Can I call the WiFi list screen displayed in the control panel of IOS 13 in my personal app?
 
 
Q