Search results for

Account Locked

31,787 results found

Post

Replies

Boosts

Views

Activity

Live Photo and lock screen
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 🙂
0
0
241
Jul ’16
Clear Activation Lock on Unmanaged Apple Business Manager Devices
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
1
0
973
May ’24
Access Keychain When iPhone Locked
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:
4
0
6.7k
May ’17
Cannot update ASCredentialIdentityStore while device locked
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?
0
0
62
Apr ’25
Locked mouse pointer and in-app purchases
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.
1
0
2.0k
Jun ’22
Lock SceneKit to newest ARPlaneAnchor
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) }
0
0
484
Jul ’17
What are the locking rules for VFS and VNOP operations?
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.
4
0
761
Sep ’24
Not able to remove Activation Lock through MDM
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.
5
0
1.3k
Mar ’24
SIM card lock status
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.
2
0
1.6k
Feb ’18