Search results for

“Account Locked”

34,379 results found

Post

Replies

Boosts

Views

Activity

Pointer lock Request doesn't honored by system
I have an app which uses mouse to interact in side the app , i want to lock pointer to prevent it from overlap with system gesture on iphone se 2020 like if pointer reach up right corner it grabs notification window i used method like here in WWDC2020 https://developer.apple.com/videos/play/wwdc2020/10617?time=461 with view controller and called func which should change pointer state from viewDidLoad func import UIKit class ViewController: UIViewController { var pointerLocked :Bool = true override var prefersPointerLocked: Bool { return pointerLocked } override func viewDidLoad() { super.viewDidLoad() changePointerState(newState: false) } func changePointerState(newState:Bool) { pointerLocked=true self.setNeedsUpdateOfPrefersPointerLocked() } }
1
0
799
Aug ’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
684
Nov ’24
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
725
Jun ’21
setting up macOS service accounts?
I found this Apple document on what is an account and the different types in macOS: https://support.apple.com/guide/server/intro-to-accounts-apdcb06a828/mac but there is nothing about service accounts (typically locked accounts not possible to login with it used by system services such as databases). Is there a way to set up a service account in macOS? Or alternatively a way to configure up a user account in macOS that has the same characteristics as a service account found in Linux (like for example, /usr/sbin/nologin is used, see https://unix.stackexchange.com/questions/314725/what-is-the-difference-between-user-and-service-account). Thank you!
1
0
2.3k
Oct ’21
[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.8k
Jul ’16
CallKit - No Audio on Incoming Calls and locked devices
Our VoIP app uses CallKit and is currently affected by a strange iOS 13 bug on incoming calls when the device is locked. After initializing the AudioSession I get tons of the following error message while trying to access speaker and microphone:[aurioc] 1590: AUIOClient_StartIO failedBefore accessing speaker and microphone I initialize my audiosession in:func provider(_ provider: CXProvider, perform action: CXAnswerCallAction) { ... let session = AVAudioSession.sharedInstance() try? session.setCategory(.playAndRecord, mode: .voiceChat, policy: .default, options: .allowBluetooth) ... }and wait until the folloing function gets called by callkit:func provider(_ provider: CXProvider, didActivate audioSession: AVAudioSession) { .. }This should ensure that the AudioSession is completely intialized. But it doesn't work, I get no audio and the described error message.All incoming calls are working perfectly on iOS12 or earlier and they also work when the iOS 13 device is unlocked. So this problem only occurs
9
0
6.5k
Jul ’19
Core Data Persistent Store Coordinator Lock
I am wondering whether the persistent store coordinator (PSC) locks all connected contexts for writing after calling save() on a context. When the code inside of an (overridden) willSave() method of a (custom) managed object is executed, can there be a second context (connected to the same PSC) where the same code is executed concurrently with respect to the first? As an exemple, let's say I want to access and increment a counter stored in the (global) UserDefaults inside of a willSave() method, would this be automaticvally synced by the PSC (the counter get's modified at no other place in code)?
4
0
837
Apr ’17
Having trouble removing songs from Lock Screen after app is closed
This is in response to those having trouble closing the Apple Music widget present on locks screen after you’ve closed the app. In order to close it out completely press down on the screen at the bottom and hold before swiping up. You should see all the windows or widgets you have open. Closing the music app that way will remove it from your Lock Screen. Hope this helps
0
0
315
Mar ’21
Request Help for iCloud Activation Lock – iPhone 16 Pro
Hello, I need help with iCloud Activation Lock on my device. Device: iPhone 16 Pro 256GB Serial Number: HCJD73C0MJ IMEI: 350766435041555 / 350766435124831 I cannot access the original Apple ID, so the device is stuck on Activation Lock. I am the legitimate owner and I have proof of purchase and ID for verification. Please advise on the proper steps to resolve this issue. Thank you.
1
0
92
Feb ’26
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.8k
Aug ’16
Reply to could not sign in
First confirm that you are entering your ID and password correctly by logging in at https://www.icloud.comThen contact Apple Support to get them to check that your AppleID account is not locked or has somehow reverted.Start here: https://www.apple.com/support/ipad/contact/Click Contact Support at the bottom of the page.Click Apple ID & PasswordClick Apple ID has been disabled for security reasonsChoose how you'd like to speak to themMax.
Sep ’15
How to keep meditation timer running if app is in background or phone is locked?
I've just finished making a meditation app for iphone using swiftui which includes a timer. The only problem is the timer stops when the app is in the background or the phone is locked. The user can select between 2 and 60 minutes on the timer and play, pause, reset the timer. When seconds remaining equals zero the timer ends and a meditation bell sound plays to signal the end of the meditation. Currently I use the default timer on the iphone when I meditate in the Clock app. If I set this timer for 20 minutes and lock the phone, at the end of the 20 minutes the timer will go off and notify me with whatever sound I selected in When Timer Ends. If the default Clock app on the iphone has this basic functionality, why is it so hard to have the same functionality in the meditation app I'm making? Wouldn't the safest/easiest way to have the timer run in the background or when the phone is locked be the same method the default Clock app uses? While meditating, we don't want to have our ph
1
0
2.2k
Aug ’21
My company account, how can I find the login account?
Hello! I am a company legal person. Now I don't know what the company account number is. How can I find it?
Replies
1
Boosts
0
Views
993
Activity
Dec ’18
Split link between Dev Account and iCloud Account?
Hey all,When I signed up for a developer account, I just used my normal iCloud login credentials. Is there any way to split this, so my developer account is linked to a seperate iCloud account and not my current one?
Replies
0
Boosts
0
Views
318
Activity
Sep ’15
Pointer lock Request doesn't honored by system
I have an app which uses mouse to interact in side the app , i want to lock pointer to prevent it from overlap with system gesture on iphone se 2020 like if pointer reach up right corner it grabs notification window i used method like here in WWDC2020 https://developer.apple.com/videos/play/wwdc2020/10617?time=461 with view controller and called func which should change pointer state from viewDidLoad func import UIKit class ViewController: UIViewController { var pointerLocked :Bool = true override var prefersPointerLocked: Bool { return pointerLocked } override func viewDidLoad() { super.viewDidLoad() changePointerState(newState: false) } func changePointerState(newState:Bool) { pointerLocked=true self.setNeedsUpdateOfPrefersPointerLocked() } }
Replies
1
Boosts
0
Views
799
Activity
Aug ’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.)
Replies
1
Boosts
0
Views
684
Activity
Nov ’24
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?
Replies
0
Boosts
0
Views
725
Activity
Jun ’21
setting up macOS service accounts?
I found this Apple document on what is an account and the different types in macOS: https://support.apple.com/guide/server/intro-to-accounts-apdcb06a828/mac but there is nothing about service accounts (typically locked accounts not possible to login with it used by system services such as databases). Is there a way to set up a service account in macOS? Or alternatively a way to configure up a user account in macOS that has the same characteristics as a service account found in Linux (like for example, /usr/sbin/nologin is used, see https://unix.stackexchange.com/questions/314725/what-is-the-difference-between-user-and-service-account). Thank you!
Replies
1
Boosts
0
Views
2.3k
Activity
Oct ’21
Enterprice Account
Hello i need help to update my developer account to enterprice account how change o how update the my account ?
Replies
1
Boosts
0
Views
125
Activity
Apr ’25
[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
Replies
0
Boosts
0
Views
2.8k
Activity
Jul ’16
CallKit - No Audio on Incoming Calls and locked devices
Our VoIP app uses CallKit and is currently affected by a strange iOS 13 bug on incoming calls when the device is locked. After initializing the AudioSession I get tons of the following error message while trying to access speaker and microphone:[aurioc] 1590: AUIOClient_StartIO failedBefore accessing speaker and microphone I initialize my audiosession in:func provider(_ provider: CXProvider, perform action: CXAnswerCallAction) { ... let session = AVAudioSession.sharedInstance() try? session.setCategory(.playAndRecord, mode: .voiceChat, policy: .default, options: .allowBluetooth) ... }and wait until the folloing function gets called by callkit:func provider(_ provider: CXProvider, didActivate audioSession: AVAudioSession) { .. }This should ensure that the AudioSession is completely intialized. But it doesn't work, I get no audio and the described error message.All incoming calls are working perfectly on iOS12 or earlier and they also work when the iOS 13 device is unlocked. So this problem only occurs
Replies
9
Boosts
0
Views
6.5k
Activity
Jul ’19
Core Data Persistent Store Coordinator Lock
I am wondering whether the persistent store coordinator (PSC) locks all connected contexts for writing after calling save() on a context. When the code inside of an (overridden) willSave() method of a (custom) managed object is executed, can there be a second context (connected to the same PSC) where the same code is executed concurrently with respect to the first? As an exemple, let's say I want to access and increment a counter stored in the (global) UserDefaults inside of a willSave() method, would this be automaticvally synced by the PSC (the counter get's modified at no other place in code)?
Replies
4
Boosts
0
Views
837
Activity
Apr ’17
Having trouble removing songs from Lock Screen after app is closed
This is in response to those having trouble closing the Apple Music widget present on locks screen after you’ve closed the app. In order to close it out completely press down on the screen at the bottom and hold before swiping up. You should see all the windows or widgets you have open. Closing the music app that way will remove it from your Lock Screen. Hope this helps
Replies
0
Boosts
0
Views
315
Activity
Mar ’21
Request Help for iCloud Activation Lock – iPhone 16 Pro
Hello, I need help with iCloud Activation Lock on my device. Device: iPhone 16 Pro 256GB Serial Number: HCJD73C0MJ IMEI: 350766435041555 / 350766435124831 I cannot access the original Apple ID, so the device is stuck on Activation Lock. I am the legitimate owner and I have proof of purchase and ID for verification. Please advise on the proper steps to resolve this issue. Thank you.
Replies
1
Boosts
0
Views
92
Activity
Feb ’26
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.
Replies
2
Boosts
0
Views
1.8k
Activity
Aug ’16
Reply to could not sign in
First confirm that you are entering your ID and password correctly by logging in at https://www.icloud.comThen contact Apple Support to get them to check that your AppleID account is not locked or has somehow reverted.Start here: https://www.apple.com/support/ipad/contact/Click Contact Support at the bottom of the page.Click Apple ID & PasswordClick Apple ID has been disabled for security reasonsChoose how you'd like to speak to themMax.
Replies
Boosts
Views
Activity
Sep ’15
How to keep meditation timer running if app is in background or phone is locked?
I've just finished making a meditation app for iphone using swiftui which includes a timer. The only problem is the timer stops when the app is in the background or the phone is locked. The user can select between 2 and 60 minutes on the timer and play, pause, reset the timer. When seconds remaining equals zero the timer ends and a meditation bell sound plays to signal the end of the meditation. Currently I use the default timer on the iphone when I meditate in the Clock app. If I set this timer for 20 minutes and lock the phone, at the end of the 20 minutes the timer will go off and notify me with whatever sound I selected in When Timer Ends. If the default Clock app on the iphone has this basic functionality, why is it so hard to have the same functionality in the meditation app I'm making? Wouldn't the safest/easiest way to have the timer run in the background or when the phone is locked be the same method the default Clock app uses? While meditating, we don't want to have our ph
Replies
1
Boosts
0
Views
2.2k
Activity
Aug ’21