Search results for

“Account Locked”

34,363 results found

Post

Replies

Boosts

Views

Activity

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
514
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
953
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.5k
Mar ’24
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
1k
May ’24
NSFileCoordinator locks up
In my App I'm using the NSFileCoordinator to read and write files to the iCloud, so they sync between devices. This works fine in general. But under iOS 11 I've noticed on my iPad (but not on my iPhone), that some times the iCloud syncing stops competely. If this happens this issue won't go away until the device is rebooted. Then evertyhing works again for some time. Some time later (days, weeks) the problem is back, iCloud sync fails completely.So I used the debugger to find out what's going on. And I noticed, when the problem occurs, all attepmts to use the NSFiIeCoordinator will lock up. For example whan calling the method coordinateReadingItemAtURL:options:error:byAccessor: the block which is called when it is safe to do the read operation is never called. The same happens for coordinated write operations. Every call to the coordinated file operations will block forever. Even if there's only one single call, so there can not be a dead-lock within the App. Is this a known issue (the fact
Topic: UI Frameworks SubTopic: UIKit Tags:
3
0
2.1k
Dec ’17
Enterprise MDM Camera Lock Related
Hi, I'd like to know about Enterprise MDM. Currently, MDM camera lock is used, but in certain situations, the camera is available. However, if you go outside the application, the camera is locked, but the camera opens unless you lock the cell phone and unlock the cell phone password when the camera is released. If you unlock your phone password, the camera locks, has anyone fixed this phenomenon?
1
0
602
May ’23
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
Reply to Stolen VisionPro : what's the security risk if running 2.0 beta?
I'm sorry for what happened to you. I'm no expert, so take this with a grain of salt. I'd love to hear other people's opinions on this matter :) . Here's my take on this. Apple Support advised me to keep the device on my account to stop the crooks from activating it. I think that's the best thing to do right now - leaving Activation Lock on - since turning it off will allow them to use it. There's still a chance you'll be able to retrieve your device. Right now, I think you should focus on the legal procedures in your area regarding this kind of events, so you can maximise the chances of recovering your Vision Pro. You can always remove it from your account later if you're unable to recover your device. During the time you had your device on your account, it's quite unlikely that they would've been able to recover personal data, since developing a bypass for security measures like the ones on the Vision Pro usually takes a while. Is keeping the VisionPro (running a 2.0 beta
Topic: Privacy & Security SubTopic: General Tags:
Jun ’24
iOS 18.0.1 automatic locking bug
Locked phone -> Face ID unlocking (without swapping up to home page) -> The phone stays unlocked and wait for swapping up endlessly (don’t locking after the setted aut. locking period). Sorry for the bad english - I hope you will understand what is the bug.
0
0
507
Oct ’24
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) }
Replies
0
Boosts
0
Views
514
Activity
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.
Replies
4
Boosts
0
Views
953
Activity
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.
Replies
5
Boosts
0
Views
1.5k
Activity
Mar ’24
Mail Notifications - Lock Screen
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
Replies
5
Boosts
0
Views
722
Activity
Jun ’17
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
Replies
1
Boosts
0
Views
1k
Activity
May ’24
NSFileCoordinator locks up
In my App I'm using the NSFileCoordinator to read and write files to the iCloud, so they sync between devices. This works fine in general. But under iOS 11 I've noticed on my iPad (but not on my iPhone), that some times the iCloud syncing stops competely. If this happens this issue won't go away until the device is rebooted. Then evertyhing works again for some time. Some time later (days, weeks) the problem is back, iCloud sync fails completely.So I used the debugger to find out what's going on. And I noticed, when the problem occurs, all attepmts to use the NSFiIeCoordinator will lock up. For example whan calling the method coordinateReadingItemAtURL:options:error:byAccessor: the block which is called when it is safe to do the read operation is never called. The same happens for coordinated write operations. Every call to the coordinated file operations will block forever. Even if there's only one single call, so there can not be a dead-lock within the App. Is this a known issue (the fact
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
3
Boosts
0
Views
2.1k
Activity
Dec ’17
access app on locked screen
Hi,I am developing an app which can be used in case of emergency. I want my app to be available on locked screen too. How can i do that?Thanks
Replies
2
Boosts
0
Views
677
Activity
Aug ’15
Enterprise MDM Camera Lock Related
Hi, I'd like to know about Enterprise MDM. Currently, MDM camera lock is used, but in certain situations, the camera is available. However, if you go outside the application, the camera is locked, but the camera opens unless you lock the cell phone and unlock the cell phone password when the camera is released. If you unlock your phone password, the camera locks, has anyone fixed this phenomenon?
Replies
1
Boosts
0
Views
602
Activity
May ’23
How to make a locked folder in iOS
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.
Replies
12
Boosts
0
Views
14k
Activity
Jan ’18
Lock Screen Customization iOS16
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.
Replies
1
Boosts
0
Views
505
Activity
Jul ’22
I can not resize images for the lock screen
I can not resize images for the lock screen
Replies
0
Boosts
0
Views
842
Activity
Jul ’18
locked out of calendar
Due to account maintenance, Calendar is currently unavailable. this is what it gives me. please help
Replies
0
Boosts
0
Views
435
Activity
Apr ’21
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.
Replies
2
Boosts
0
Views
1.6k
Activity
Feb ’18
Reply to Stolen VisionPro : what's the security risk if running 2.0 beta?
I'm sorry for what happened to you. I'm no expert, so take this with a grain of salt. I'd love to hear other people's opinions on this matter :) . Here's my take on this. Apple Support advised me to keep the device on my account to stop the crooks from activating it. I think that's the best thing to do right now - leaving Activation Lock on - since turning it off will allow them to use it. There's still a chance you'll be able to retrieve your device. Right now, I think you should focus on the legal procedures in your area regarding this kind of events, so you can maximise the chances of recovering your Vision Pro. You can always remove it from your account later if you're unable to recover your device. During the time you had your device on your account, it's quite unlikely that they would've been able to recover personal data, since developing a bypass for security measures like the ones on the Vision Pro usually takes a while. Is keeping the VisionPro (running a 2.0 beta
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’24
iOS 18.0.1 automatic locking bug
Locked phone -> Face ID unlocking (without swapping up to home page) -> The phone stays unlocked and wait for swapping up endlessly (don’t locking after the setted aut. locking period). Sorry for the bad english - I hope you will understand what is the bug.
Replies
0
Boosts
0
Views
507
Activity
Oct ’24