Search results for

“Account Locked”

36,240 results found

Post

Replies

Boosts

Views

Activity

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.9k
Jul ’24
How can I downgrade my enterprise account to a basic developer account ?
Dear all,I have to renew my developer enterprise account within 2 weeks,but I will not need the benefits of an enterprise account anymore and my inhouse apps are out of use. But I generally want to stay a part of the wordwide Apple developer community.So the question is how I can downgrade my enterprise account to a basic developer account ?Thanks for detailed informationKind regards Christian Haug
4
0
1.4k
Sep ’17
How to detect Device Lock and Unlock events in iOS application extension ?
Hey guys,My iOS application has an extension that detects device Unlock and Lock event. I found 2 separate API to detect. Both of them work great.But my code is rejected twice by Apple Review Team. The following reason was to reject our binary.From AppleGuideline 2.5.1 - Performance - Software RequirementsYour app uses or references the following non-public APIs:com.apple.springboard.lockcompletecom.apple.springboard.lockstate1. First solution to detect device lock and unlock-----------------------------------Code Starts here-----------------------------------#import <notify.h> int notify_token; notify_register_dispatch(com.apple.springboard.lockstate, ¬ify_token, dispatch_get_main_queue(), ^(int token) { uint64_t state = UINT64_MAX; notify_get_state(token, &state); if(state == 0) { self->lastActiveDate = [NSDate date]; self->deviceCurrentState = _DEVICE_LOCK_STATE_UNLOCKED; } else { self->deviceCurrentState = _DEVICE_LOCK_STATE_LOCKED; } } );------------------------------
Topic: UI Frameworks SubTopic: AppKit Tags:
4
0
7.7k
Aug ’18
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
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
701
Nov ’24
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
813
Aug ’21
Reply to iOS 11.3 beta 2 iMessage completely broken?
I got the same peoblem and cannot fix the issue, mac os 10.13.4 And ios 11.3 beta 2, i signed out and cannot log back into my account at all. I have done reset and restore, itunes over the air restore from multiple backups and it doesnt work at all..... how to i disable imessages on my iphone completely? The message app is frrezing up and seems to be looking for a log in? I went into icloud and diable imessages but the message up is still freezing up? Apple come on this is bad one, its like my account is locked out and i can authenticate anymore
Topic: App & System Services SubTopic: Core OS Tags:
Feb ’18
Help with IPAD locked
My ipad said IPad is disabled connect to ITunes I can't no where with trying to reset. Has anyone else had this issue? If so, can you give advise to unlocking
Replies
0
Boosts
0
Views
272
Activity
Jan ’21
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.
Replies
12
Boosts
0
Views
6.9k
Activity
Jul ’24
System Preferences Locked?
After installing Catalina I can't make any changes in System Preferences toiCloudInternet AccountsNetworkSecurity and Privacywithout getting a There was an error in ____________ preferences messageAnyone else having this issue?
Replies
11
Boosts
0
Views
3.0k
Activity
Jun ’19
ios 9.3 iPhone 6s lock/touch id problem
When I open iPhone with touch Id, phone opens but locks immediately after and works second time. It does that almost every time.
Replies
4
Boosts
0
Views
754
Activity
Feb ’16
How can I downgrade my enterprise account to a basic developer account ?
Dear all,I have to renew my developer enterprise account within 2 weeks,but I will not need the benefits of an enterprise account anymore and my inhouse apps are out of use. But I generally want to stay a part of the wordwide Apple developer community.So the question is how I can downgrade my enterprise account to a basic developer account ?Thanks for detailed informationKind regards Christian Haug
Replies
4
Boosts
0
Views
1.4k
Activity
Sep ’17
Registering a developer account prompts account error
Registering a developer account prompts an account error, you need to contact the Apple support team
Replies
2
Boosts
0
Views
474
Activity
Mar ’22
Lock and unlock app feature using Auto renewable purchase
In my app which is platform independent can I use Auto renewable to lock or unlock app feature . Is it possible that app may be rejected by Apple .
Replies
1
Boosts
0
Views
289
Activity
Jun ’16
How to detect Device Lock and Unlock events in iOS application extension ?
Hey guys,My iOS application has an extension that detects device Unlock and Lock event. I found 2 separate API to detect. Both of them work great.But my code is rejected twice by Apple Review Team. The following reason was to reject our binary.From AppleGuideline 2.5.1 - Performance - Software RequirementsYour app uses or references the following non-public APIs:com.apple.springboard.lockcompletecom.apple.springboard.lockstate1. First solution to detect device lock and unlock-----------------------------------Code Starts here-----------------------------------#import <notify.h> int notify_token; notify_register_dispatch(com.apple.springboard.lockstate, ¬ify_token, dispatch_get_main_queue(), ^(int token) { uint64_t state = UINT64_MAX; notify_get_state(token, &state); if(state == 0) { self->lastActiveDate = [NSDate date]; self->deviceCurrentState = _DEVICE_LOCK_STATE_UNLOCKED; } else { self->deviceCurrentState = _DEVICE_LOCK_STATE_LOCKED; } } );------------------------------
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
4
Boosts
0
Views
7.7k
Activity
Aug ’18
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.
Replies
2
Boosts
0
Views
1.2k
Activity
Oct ’23
(FIXED) Beta 6: screen lock not respecting configured timeout
Since the last beta update, the phone is requiring a passcode almost immediately after lock. I have Require Passcode configured to 1 hour.If one locks the phone and reopens again, it does not ask. But leaving it a couple minutes locked, it already asks the passcode again.
Replies
4
Boosts
0
Views
708
Activity
Mar ’16
Change the existing Developer account to Enterprise account
What are the ways to change the existing Developer account to Enterprise account. Do we need to pay $299 for Enterprise account to upgrade the account. Please confirm.
Replies
1
Boosts
0
Views
2.1k
Activity
Oct ’17
Transfer app from personal account to team account
I've been developing an app for a client using my own developer account and the app ID is registered to my account. I am now a team member of my clients account and I want the app associated with their account when it is launched. Is there an easy way to transfer the app id or should I launch the app in the Appstore and then transfer the app ID?
Replies
1
Boosts
0
Views
867
Activity
Mar ’20
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
701
Activity
Nov ’24
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
813
Activity
Aug ’21
Reply to iOS 11.3 beta 2 iMessage completely broken?
I got the same peoblem and cannot fix the issue, mac os 10.13.4 And ios 11.3 beta 2, i signed out and cannot log back into my account at all. I have done reset and restore, itunes over the air restore from multiple backups and it doesnt work at all..... how to i disable imessages on my iphone completely? The message app is frrezing up and seems to be looking for a log in? I went into icloud and diable imessages but the message up is still freezing up? Apple come on this is bad one, its like my account is locked out and i can authenticate anymore
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’18