Hi all!
I'm thankful to Kmart for his answers related to Screen Time API features iOS 15 / iOS 16. That really helpful!
Please, help me to clarify a few more things...
-
As I read here in the comment
ManagedSettings
has two type of restrictions,shielding
andblocking
. Isblocking
type of restriction available for users withindividual
type of auth? -
If the answer on the first question is "No", does that mean that
individual
user will be able just to skip the shielding screen and continue to use apps? -
If
individual
user can skip shielding, will it be allowed to do it with a passcode or without, if the passcode wasn't set for Screen Time in the phone settings?
I'll really appreciate any help and answer! Thank you in advance!
- Yes, blocking (i.e. hiding applications from the home screen) is available for individuals and you can do so for specific apps by specifying their bundle identifier:
Application(bundleIdentifier: "com.example.app")
. - If you would like to shield apps, you can choose the behavior and number of buttons (either one or two) shown in the shield by creating a Shield Configuration extension to customize the appearance of the shield and a Shield Action extension to customize the behavior of the shield's buttons.
- The behavior of the shield's buttons can be customized by your app via an extension. If your app does not provide an extension to handle the shield's buttons, the user will not be able to ignore the shields and the shield will only be removed when your app removes the appropriate shield setting from a
ManagedSettingsStore
.
And also, could we set a restriction for specific app/apps with individual user or this kind of restriction available just for child?
Yes.