「Meraki」MDM を使用して自分のアプリの 1 つにシングル アプリ モードを適用しようとしています。MDM サイトにデバイスを登録し、プロファイルを作成しました。
このサイトで提案されているように、以下のコードを使用しています。コードはシミュレーターでは正常に機能しますが、iPad では機能しません。「UIAccessibilityRequestGuidedAccessSession」は起動されません。誰かが私がここで欠けているものを助けてくれますか?
NSLog(@"requesting guided access");
UIAccessibilityRequestGuidedAccessSession(YES, ^(BOOL didSucceed) {
if (didSucceed) {
NSLog(@"entered guided access");
self.inGuidedSessionMode = YES;
[[[UIAlertView alloc] initWithTitle:@"entered single access mode" message:nil delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
}
else {
NSLog(@"failed to enter guided access");
[[[UIAlertView alloc] initWithTitle:@"Unable to enter single access mode" message:nil delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
}
});