Programmatically determine if an iOS device is being monitored?

Is there a way to detect programmatically if the iOS device is being monitored. The MDM server can ask the device about the monitoring status, but can it be detected from the application? Any help would be helpful.

+4
source share
1 answer

What is your use case for verification oversight? So far, the program cannot programmatically check, since there is no clear use case. Supervision is used when trying to install profiles with a payload that needs to be monitored or when trying to initiate offline mode of a single application from an application. In the first case, the MDM server may request monitoring, as you said. In the latter case of standalone single application mode, you don’t particularly care about monitoring, you care about whether you were able to successfully enter or exit offline single application mode, and the completion block allows you to check (although you should probably get a message if it will not help you verify that the device is being monitored).

, , , Apple.

0

Source: https://habr.com/ru/post/1532605/


All Articles