guided-access

CLLocation Manager not updated when App is in Guided Access mode

末鹿安然 提交于 2020-01-25 02:09:45
问题 I kept Guided Access for iPad app. When the app is launched it asks for user's current location using CLLocationManager .This is working under Normal mode and updates user current location. But under Guided Access, popup ("Allow to access your location") is not shown and authorizationStatus is always kCLAuthorizationStatusNotDetermined and doesn't update current location of user . Couldn't understand what could be the problem.Searched a lot but couldn't find it. ViewController.m : - (void

CLLocation Manager not updated when App is in Guided Access mode

我的未来我决定 提交于 2020-01-25 02:07:57
问题 I kept Guided Access for iPad app. When the app is launched it asks for user's current location using CLLocationManager .This is working under Normal mode and updates user current location. But under Guided Access, popup ("Allow to access your location") is not shown and authorizationStatus is always kCLAuthorizationStatusNotDetermined and doesn't update current location of user . Couldn't understand what could be the problem.Searched a lot but couldn't find it. ViewController.m : - (void

Is there a way to deliver push notifications in iOS 11 during Guided Access?

吃可爱长大的小学妹 提交于 2020-01-02 01:11:13
问题 Our iPad app relies on silent push notifications to trigger certain events, and is used by many of our users in Guided Access mode. This has worked well until iOS 11 which now seems to block delivery of push notifications while Guided Access is enabled. I've tried a variety of different payloads according to the Apple documentation here (such as content-available, alert, sound, badge etc.), but I can't get anything to be delivered while Guided Access is enabled. This isn't necessarily a bug,

Trying to initate guided access from within an iOS6 app?

雨燕双飞 提交于 2019-12-08 10:36:02
问题 We have an iOS6 (iPhone) app we are building in XCode that lists installed apps on the user's device (who have registered URLs) in a list View. Is it possible to make one of the apps in the list open in Guided Access mode (if Guided Access is turned on beforehand)? Basically, we want to bypass the triple click on the home button and make any app in the list open directly to the Guided Access Start Screen. 回答1: According to Apple, Guided Access helps students with disabilities such as autism

Alert displayed when tapping links in UIWebView with Guided Access enabled under iOS 8

放肆的年华 提交于 2019-12-04 14:49:24
问题 I have written a fairly basic iOS app that makes use of web content via a UIWebView element. The app needs to run in Guided Access mode as it is running in a customer-facing retail environment. Under iOS 7 all worked fine, but since updating to iOS 8 an alert "Guided Access is enabled. Triple-click the home button to exit" is displayed at the top of the screen almost every time a link on the web page is tapped. I've tried creating a new app from scratch that has nothing other than a UIWebView

Alert displayed when tapping links in UIWebView with Guided Access enabled under iOS 8

陌路散爱 提交于 2019-12-03 09:09:20
I have written a fairly basic iOS app that makes use of web content via a UIWebView element. The app needs to run in Guided Access mode as it is running in a customer-facing retail environment. Under iOS 7 all worked fine, but since updating to iOS 8 an alert "Guided Access is enabled. Triple-click the home button to exit" is displayed at the top of the screen almost every time a link on the web page is tapped. I've tried creating a new app from scratch that has nothing other than a UIWebView element in it, and the problem still occurs. I've filed a bug with Apple, but am urgently seeking a

Using autonomousSingleAppModePermittedAppIDs and UIAccessibilityRequestGuidedAccessSession together with Meraki as MDM to enter single app mode

风格不统一 提交于 2019-11-30 14:18:32
I have a small number of devices I've set as supervised using Apple Configurator. However I'm unable to get the app to successfully enter single app mode using the UIAccessibilityRequestGuidedAccessSession API. I created a configuration profile with restrictions set in the Meraki console, in particular I've set the "Allowed Single App Mode" field in the Meraki console to my app bundle id. I'm assuming this field in Meraki maps to the autonomousSingleAppModePermittedAppIDs configuration key. I've added my app which is an IPA (not installed from the app store) to be installed on the supervised

Using autonomousSingleAppModePermittedAppIDs and UIAccessibilityRequestGuidedAccessSession together with Meraki as MDM to enter single app mode

烈酒焚心 提交于 2019-11-29 20:03:28
问题 I have a small number of devices I've set as supervised using Apple Configurator. However I'm unable to get the app to successfully enter single app mode using the UIAccessibilityRequestGuidedAccessSession API. I created a configuration profile with restrictions set in the Meraki console, in particular I've set the "Allowed Single App Mode" field in the Meraki console to my app bundle id. I'm assuming this field in Meraki maps to the autonomousSingleAppModePermittedAppIDs configuration key. I

Detect or react to Guided Access?

て烟熏妆下的殇ゞ 提交于 2019-11-28 23:22:46
In an app we're creating, we need to add some extra screens to configure the app. It would be nice if we could add extra buttons on the opening screen of the app, that is only visible if the iPad is not in guided access. Is it possible to detect that the device is currently running with guided access, and react to it being enabled or disabled? You want something like this: NSLog(@"Accessabilitiy enabled: %@", UIAccessibilityIsGuidedAccessEnabled() ? @"YES" : @"NO"); if (!UIAccessibilityIsGuidedAccessEnabled()) { // show something since I'm not in guided access } If you want to know when it

Detect or react to Guided Access?

青春壹個敷衍的年華 提交于 2019-11-27 14:40:44
问题 In an app we're creating, we need to add some extra screens to configure the app. It would be nice if we could add extra buttons on the opening screen of the app, that is only visible if the iPad is not in guided access. Is it possible to detect that the device is currently running with guided access, and react to it being enabled or disabled? 回答1: You want something like this: NSLog(@"Accessabilitiy enabled: %@", UIAccessibilityIsGuidedAccessEnabled() ? @"YES" : @"NO"); if (