HiWill there be some ways to activate the live photo when we use the raise to wake up feature or simply press the home button on lock screen ?An option to auto play the live photo on the lock screen could be a nice and fancy feature to add to the options and could definitly have a harry potter feeling when raising the phone just to look up at the kids picture 🙂
Search results for
Account Locked
31,787 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi, We have our devices listed in Apple Business Manager but they are not enrolled in MDM. Some of the devices are locked in Activation Lock screen as employees logged in with their personal account . Since devices are company owned and already available in ABM is there any way to remove activation lock easily without providing proof of purchase to apple? In order to prevent devices getting into activation lock in future the only way is to Enroll the device in a MDM? Are there anyways to bypass activation lock if we are not using MDM
Topic:
Business & Education
SubTopic:
Device Management
Tags:
Enterprise
Business and Enterprise
Apple Business Manager
I have implemented the following code to create a keychain item:let keychainQuery = NSMutableDictionary(dictionary: [ NSString(format: kSecClass) : kSecClassGenericPasswordValue, NSString(format: kSecAttrService) : my_service, NSString(format: kSecAttrAccount) : my.app.domain, NSString(format: kSecAttrAccessible) : NSString(format: kSecAttrAccessibleAfterFirstUnlock), NSString(format: kSecReturnData) : my_password) let status = SecItemAdd(keychainQuery as CFDictionary, nil) if status != errSecSuccess ( print(status not success: (status)) }Unfortunately, when the iPhone is locked (press the lock button), even though the accessible element has been set to after first unlock, I get an error (-25300) when my code tries to retrieve the information stored in the keychain. The app can access information in the keychain while the app is in the background, just not when the iPhone is locked.The code to retrieve:let keychainQuery: NSMutableDictionary = NSMutableDictionary(dictionary: [ kSecClassValue:
Our product includes a background sync process that synchronizes credentials between devices. We need to update ASCredentialIdentityStore when credentials are changed, we have noticed that the ASCredentialIdentityStore.shared.saveCredentialIdentities() fails to run when the device is locked. Is it possible to update ASCredentialIdentityStore when the device is locked?
Is anyone else seeing problems with these? They don't appear up?Screen seems to turn on but nothing is on the lock screen.I've been into notifications for mail and turned them on/off but still seems to be the same problem.This just me?iOS 11 b1.Thanks
Does anyone else have a problem responding to a message from the lock screen? My screen disappears while typing the reply. Thank youMatt
Does Apple now allow us to have our apps show on the lock screen and have access to them?Stright forward..ThanksJZ
We have an iOS app in Development with in-app purchases that works fine on iOS devices. When running the app on Apple Silicon Macs, the app locks the mouse pointer and renders its own (via GCMouse listener events). When the user selects an in-app item to purchase, the operating system displays the purchase confirmation dialog as expected, however because the pointer is still locked, users are unable to click elements on the dialog or see a pointer. I've tried running setNeedsUpdateOfPrefersPointerLocked and returning false prior to the purchase but the pointer remains locked. Is there a better way to immediately release the lock or ensure the in-app purchase dialog gets the mouse pointer? Thanks.
Hi,I'm trying to get my SceneKit scene to lock to the floor, but if I move the phone to the table, the screen should be able to lock to the table too.I've been trying with the following code with no success, any tips?func renderer(_ renderer: SCNSceneRenderer, didAdd node: SCNNode, for anchor: ARAnchor) { guard let plane = anchor as? ARPlaneAnchor else { return } debugPrint(self.sceneView.scene.rootNode.position: (self.sceneView.scene.rootNode.position)) debugPrint(node.position: (node.position)) self.sceneView.scene.rootNode.transform = SCNMatrix4(plane.transform) }
I'm trying to make a folder in my app's documents folder that's locked or password protected so that only the app can access them. I've been searching but I'm not finding anything that will work. Can someone please point me in the direction I need to go.
Hi there. I just downloaded ios16 public beta and the lock screen customization feature isn't work. When I click to Add New Wallpaper, nothing appears. I have restarted my phone twice already. Anyone else experiencing this issue? Thanks.
I'm observing all sorts of race conditions occurring in various VNOPs my custom filesystem implements. I'm inclined to attribute this to my implementation not following the locking rules expected by the system of a 3rd party filesystem as well as it should. I've looked at how locking is done in Apple's own implementation of Samba and NFS clients. The Samba client uses read/write locks to protect its node from data races. While the NFS client uses mutex locks for the same purpose. I realised that I don't have a clear model in my head of how locking should be done properly. Thus my question, what are the locking rules for VFS and VNOP operations? Thanks.
I am not able to remove the Activation Lock through MDM. I enabled the activation lock via https://mdmenrollment.apple.com/device/activationlock My device is listed in the ABM portal and i used the provided snippet here to generate the bypass code. I am getting the SUCCESS response of the above API and the activation lock also got enabled. But while removing the above activation lock via https://deviceservices-external.apple.com/deviceservicesworkers/escrowKeyUnlock and using the same escrow key that I used in the above api while activating the lock. I got the following error everytime Though this API of clearing the activation lock works perfectly fine when I enable the user-initiated activation lock, by enabling the Find My in the device. And use the bypass code as escrow_key that we receive from the device via device querry command.
Due to account maintenance, Calendar is currently unavailable. this is what it gives me. please help
I'm developing a App related to Tarde-in, #1 I need to check is there any option to check the status of Sim Card Lock programmatically. I wanna know Device Sim Card Lock is enabled/disabled. Please let me know is there any framwork in XCode to check this information. #2 I'm also using IOKit framework to get the Battery Max capaity of the device. (Ex: Same like what Coconut Battery APP is showing its live on app store) But on some blog it say's it's illegal to use the private framework to get hardware information. So please let me know will my app get approve on app store if i get only the Battery Max Capacity value to allow user for Trade-in.