Search results for

Account Locked

31,846 results found

Post

Replies

Boosts

Views

Activity

Account
Hi, how are you? I need to remove my developer devices from my account because in Xcode when i want to test my application i get this message: Your development team has reached the maximum number of registered iPhone devices.
0
0
220
Aug ’24
Lock Screen Password Reset Impossible Since Sonoma
Posting this here in hopes someone at Apple will be made aware. Since Sonoma, the Old Password field was removed from the Reset Password UI. Apparently, this made it impossible to reset a password from the lock screen even when the password meets the requirements. Since there was no other option but to forcefully reboot, the Reset Password UI on the login screen was even less intuitive. Enter password, prompted to reset password, specify new password (same password attempted from Lock Screen Rest Password UI), Reset Password button grayed out. Hmm. Where do I enter my old password that I just entered to trigger the Reset Password UI? Oh, the Enter Password field. We've had two users resort to resetting their password with the FileVault recovery key due to this Reset Password UI change. If anyone else has in an environment with MacOS Sonoma devices managed by MDM, would be interested to know if the same behavior occurs.
2
0
1.2k
Oct ’23
AccessibilityUIServer has microphone locked
Just installed iOS 18 Beta 3. I am seeing my AccessibilityUIServer using the microphone and this is causing no notification sounds, inability to use Siri by voice and volume is grayed out. If I start to play anything with sound AccessibilityUIServer releases the microphone and I am able to use the app. Calls still work since AccessibilityUIServer will release and the phone will ring. Feed back ID is FB14241838.
12
0
6.2k
Jul ’24
[AVSampleBufferDisplayLayer enqueueSampleBuffer:] crash when locking the screen
I use VTDecompressionSessionDecodeFrame to decode nalu and render pixelbuffer by AVSampleBufferDisplayLayer. Crash happened twice when I lock the screen which is rendering pixelbuffer. Did anyone ever suffer from this and solve it? Great thanks for help!crash log:Date/Time: 2016-07-07 10:55:42.515 +0800 Launch Time: 2016-07-07 10:39:13.926 +0800 OS Version: iOS 8.4 (12H143) Report Version: 105 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x00000001f9c1beb8 Triggered by Thread: 23 Thread 23 Crashed: 0 libobjc.A.dylib 0x0000000194e6fbd0 objc_msgSend + 16 1 AVFoundation 0x0000000181a4aa94 - [AVSampleBufferDisplayLayer dealloc] + 444 2 QuartzCore 0x0000000187537c50 CA::Layer::free_transaction(CA::Transaction*) + 180 3 QuartzCore 0x0000000187533c58 CA::Transaction::commit() + 656 4 MediaToolbox 0x000000018572055c FigLayerSynchronizerSynchronizeToMoment + 1480 5 MediaToolbox 0x0000000185917870 videoQueueRemote_SynchronizeLayerToMoment + 68 6 MediaToolbox 0x00000001856
0
0
2.7k
Jul ’16
Programatically lock screen in macOS Big Sur
I'm developing a background agent program for macOS that locks users out of their session and forces them to re-authenticate if certain security conditions are violated. Previously, I used 'CGSession -suspend' to do this, but it no longer works in Big Sur. One recommendation I've seen is to create a macro that uses the default keyboard shortcut (ie 'CTRL+CMD+Q'), however this obviously won't work if the user has configured their shortcuts differently; the same goes for other methods that require certain user preferences to be set (eg run 'pmset displaysleepnow' after setting preferences to require password immediately after sleep or screensaver). I'm looking for something that's more authoritative/dependable than that, eg an API of some sort. Does such a thing exist?
0
0
667
Jun ’21
How to draw emojis like the Lock Screen customisation?
On iOS you can create a new Lock Screen that contains a bunch of emoji, and they'll get put on the screen in a repeating pattern, like this: When you have two or more emoji they're placed in alternating patterns, like this: How do I write something like that? I need to handle up to three emoji, and I need the canvas as large as the device's screen, and it needs to be saved as an image. Thanks! (I've already written an emojiToImage() extension on String, but it just plonks one massive emoji in the middle of an image, so I'm doing something wrong there.)
1
0
581
Nov ’24
How to turn off Sandbox account and use as a normal account?
It appears that years ago, I used my work email address to create a sandbox account. However, now I want to set up a normal iCloud account. I've deleted the sandbox account from Users & Accounts from AppStore connect, but the account still appears to be a Sandbox account. I know this because whenever I try to do anything with the App Store, I get an error message: Cannot connect to iTunes Store. Any ideas how I can turn this account from a Sandbox account back to a normal account so I can use it with my work email? Or must I use a new email address?
1
0
1.5k
Jul ’20
Locked all the settings in AVFoundation but brightness sometimes still changes.
I locked all the setting I could find in AVFoundation, including focus, exposure and white balance. In theory, for one object, the photos should be exactly the same in the same light environment.However, the brightness of photos depended on the initial light environment. For example, if I point the camera to the sun at the beginning, after I moved it back to the test environment and take a picture, the pictures will be darker than the ones taken directly in the test environment. I checked the exif data of the photos and found that the settings were locked (namely, same).Thanks in advance for any suggestion.
2
0
1.7k
Aug ’16
Reply to Core NFC writeLock()
OK - yes being stupid - missed out some returns! Not totally sure why it would not just fall through correctly, but this has fixed itif (self.lockTag) { // locking required also os_log(Tag needs to be locked) tag.writeLock() { (error: Error?) in if error != nil { os_log(LOCK FAILED!!) session.alertMessage = Lock failed try again session.invalidate() return } else { session.alertMessage = Write and Lock successful session.invalidate() return } } returnThis works perfectly and locks the tags.
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’19