Search results for

“Account Locked”

34,379 results found

Post

Replies

Boosts

Views

Activity

iOS 26 devices in Single App Mode stuck on lock screen
On iOS 26, if in Single App Mode, the device gets stuck on the lock screen. Devices are configured in SAM (kiosk mode), without a PIN requirement. Since updating to iPadOS 26, every single device that locks (goes to sleep) becomes completely unresponsive at the lock screen. Touch input does not work. The only way to regain access is to reboot the device, which will boot to the SAM app, but then lock again if it goes to sleep. Related discussion in the public forums.
1
0
1.3k
Oct ’25
Subscription on different in-app account with the same account
A user has multiple in-app accounts and an Apple account. He purchase the subscription on one in-app account and then cancels it immediately, at which point the payment is deducted once and the subscription stays in effect. Then he logs into a second in-app account and initiates a subscription with the same Apple account, at this point can he get the subscription service on the second in-app account without paying for it? If so, how to deal with it?
1
0
610
Apr ’24
Help with reducing File Lock (0xdead10cc) terminations
My app has a meaningful number of 0xdead10cc terminations because it deals with sqlite files in a shared app container. Are there any tips to diagnose them or track down which files are most often held open? Are they delivered to MetricKit as crash diagnostics? They're hard to identify in the Xcode organizer - I have to right-click on a suspect, Show in Finder, Show Package Contents, navigate into the proper sub-folder for my filter, then into the Logs subfolder, and look through the raw crash reports. And these crash reports don't identify the file that the lock is held open to, and they don't identify the correct culprit thread. Not all of them even show any of my code doing file IO. FB12292887
1
0
154
4w
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.3k
Sep ’17
Reply to Can't sign into iTunes
I suggest filing a bug report since it's hard to see why that would be expected behaviour.It might also be worth getting in touch with the Developer Account Support team because they should be able to reset your AppleID such that it can't be triggered into being locked so easily. Phone numbers for different countires are here:https://developer.apple.com/contact/phone.phpYou can also contact them via Web Message here:https://developer.apple.com/contact/submit.php
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’15
Locking thread with DispatchGroup
In my AppDelegate I'm setting a custom NSObject subclass as my UNUserNotificationCenterDelegate. When the notification comes in, depending on type, I need to make a web call, which is of course asynchronous. However, I can't exit the delegate method until that web call returns, since I have to call the completionHandler passed into userNotificationCenter(_:willPresent:withCompletionHandler).I was thinking I could just do the below, but the wait blocks the main thread, and the web call is never actually kicked off. How do I work around this?func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { // Stuff let group = DispatchGroup() group.enter() AlamofireAsyncWebCall.onComplete { [unowned self] response in defer { group.leave() } // stuff here } group.wait() completionHandler([]) }I'm thinking unowned is safe there since this delegate is strongly held by the App
0
0
529
Jan ’17
Lock Screen Orientation
Looking for code to prevent a user from going landscape on a particular view controller only for an iPhone. The user should be able to rotate the view to landscape on an iPad only on the view controller.
Topic: Design SubTopic: General
1
0
518
Jul ’24
CallKit: No recording when locked when microphone permission not determined
If I receive a call with CallKit when the phone is locked, and the user has never been asked for microphone permission for my app before, after swiping to answer, I record no audio, and the user is not asked for microphone permission even though my app asks for it. The user will just think the recording is broken. When you unlock, you will see the microphone permission alert, but that is too late.Is there a way to ask for microphone permission when answering a call on the lock screen?
0
0
1.2k
Sep ’16
Rotation problem after pressing Lock Button
I am working on my first ios app, which is a game running full screen in landscape right orientation only.The problem is if I am running the game and press the Lock button, then unlock the device, the game appears correctly in landscape mode but then switches for a short time to portrait before returning to landscape. Everythis works ok, it just looks a little messy.I think I have all of the settings correct. On the General screen I have only Landscape right, hide status bar and requires full screen ticked. In my Info.plist, this is the only supported orientation shown for both iPhone and iPad. In my GameViewController.m I have shouldAutorotate set to NO, and supportedInterfaceOrientations set to UIInterfaceOrientationMaskLandscapeRight.I would greatly appreciate any help to resolve this. Thanks.
0
0
303
Jun ’17
RealityView content disappears when selecting Lock In Place on visionOS
I'm experiencing an issue where all RealityView content disappears when the user selects Lock In Place from the window management menu (long press on close button). Follow Me works correctly and this happens in Testflight builds only not reproducible when I run locally I have reproduced this with a minimal project containing nothing but a simple red cube — no custom anchors, no app state, no dependencies. Steps to Reproduce: Open an ImmersiveSpace A red cube is placed 1m in front of the user via RealityView Long press the X button on any floating window Select Lock In Place The cube disappears immediately Expected: Cube remains visible after window is locked Actual: Cube disappears. Note: Follow Me does NOT reproduce this issue. Minimal reproducible code: struct ImmersiveView: View { var body: some View { RealityView { content in let cube = ModelEntity( mesh: .generateBox(size: 0.3), materials: [SimpleMaterial(color: .red, isMetallic: false)] ) cube.setPosition(SIMD3(0, 1.5, -1), re
1
0
1.8k
Mar ’26
Appintent: openAppWhenRun breaks shortcut when phone is locked
I have an app intent like the one below. If the intent is run via siri when the phone is locked then the user is asked to unlock their phone but the shortcut is interrupted. Is it possible to delay opening the app until the result dialog is returned? import AppIntents struct MyIntent: AppIntent { static var title: LocalizedStringResource = MyApp static var description = IntentDescription(Captures data) static var openAppWhenRun: Bool = true @Parameter(title: The Data) var theData: String @MainActor func perform() async throws -> some IntentResult { _ = try await RESTClient.postData(theData: theData) return .result(dialog:Thank you!) //TODO: Now try to open app } }
0
0
922
Jun ’23
iOS 26 devices in Single App Mode stuck on lock screen
On iOS 26, if in Single App Mode, the device gets stuck on the lock screen. Devices are configured in SAM (kiosk mode), without a PIN requirement. Since updating to iPadOS 26, every single device that locks (goes to sleep) becomes completely unresponsive at the lock screen. Touch input does not work. The only way to regain access is to reboot the device, which will boot to the SAM app, but then lock again if it goes to sleep. Related discussion in the public forums.
Replies
1
Boosts
0
Views
1.3k
Activity
Oct ’25
Subscription on different in-app account with the same account
A user has multiple in-app accounts and an Apple account. He purchase the subscription on one in-app account and then cancels it immediately, at which point the payment is deducted once and the subscription stays in effect. Then he logs into a second in-app account and initiates a subscription with the same Apple account, at this point can he get the subscription service on the second in-app account without paying for it? If so, how to deal with it?
Replies
1
Boosts
0
Views
610
Activity
Apr ’24
Help with reducing File Lock (0xdead10cc) terminations
My app has a meaningful number of 0xdead10cc terminations because it deals with sqlite files in a shared app container. Are there any tips to diagnose them or track down which files are most often held open? Are they delivered to MetricKit as crash diagnostics? They're hard to identify in the Xcode organizer - I have to right-click on a suspect, Show in Finder, Show Package Contents, navigate into the proper sub-folder for my filter, then into the Logs subfolder, and look through the raw crash reports. And these crash reports don't identify the file that the lock is held open to, and they don't identify the correct culprit thread. Not all of them even show any of my code doing file IO. FB12292887
Replies
1
Boosts
0
Views
154
Activity
4w
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.3k
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
468
Activity
Mar ’22
Accounts
how i can check tge emails that a site sent me in my apple security account
Replies
1
Boosts
0
Views
330
Activity
Jan ’22
Reply to Can't sign into iTunes
I suggest filing a bug report since it's hard to see why that would be expected behaviour.It might also be worth getting in touch with the Developer Account Support team because they should be able to reset your AppleID such that it can't be triggered into being locked so easily. Phone numbers for different countires are here:https://developer.apple.com/contact/phone.phpYou can also contact them via Web Message here:https://developer.apple.com/contact/submit.php
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
Locking thread with DispatchGroup
In my AppDelegate I'm setting a custom NSObject subclass as my UNUserNotificationCenterDelegate. When the notification comes in, depending on type, I need to make a web call, which is of course asynchronous. However, I can't exit the delegate method until that web call returns, since I have to call the completionHandler passed into userNotificationCenter(_:willPresent:withCompletionHandler).I was thinking I could just do the below, but the wait blocks the main thread, and the web call is never actually kicked off. How do I work around this?func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { // Stuff let group = DispatchGroup() group.enter() AlamofireAsyncWebCall.onComplete { [unowned self] response in defer { group.leave() } // stuff here } group.wait() completionHandler([]) }I'm thinking unowned is safe there since this delegate is strongly held by the App
Replies
0
Boosts
0
Views
529
Activity
Jan ’17
Lock Screen Orientation
Looking for code to prevent a user from going landscape on a particular view controller only for an iPhone. The user should be able to rotate the view to landscape on an iPad only on the view controller.
Topic: Design SubTopic: General
Replies
1
Boosts
0
Views
518
Activity
Jul ’24
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
CallKit: No recording when locked when microphone permission not determined
If I receive a call with CallKit when the phone is locked, and the user has never been asked for microphone permission for my app before, after swiping to answer, I record no audio, and the user is not asked for microphone permission even though my app asks for it. The user will just think the recording is broken. When you unlock, you will see the microphone permission alert, but that is too late.Is there a way to ask for microphone permission when answering a call on the lock screen?
Replies
0
Boosts
0
Views
1.2k
Activity
Sep ’16
Rotation problem after pressing Lock Button
I am working on my first ios app, which is a game running full screen in landscape right orientation only.The problem is if I am running the game and press the Lock button, then unlock the device, the game appears correctly in landscape mode but then switches for a short time to portrait before returning to landscape. Everythis works ok, it just looks a little messy.I think I have all of the settings correct. On the General screen I have only Landscape right, hide status bar and requires full screen ticked. In my Info.plist, this is the only supported orientation shown for both iPhone and iPad. In my GameViewController.m I have shouldAutorotate set to NO, and supportedInterfaceOrientations set to UIInterfaceOrientationMaskLandscapeRight.I would greatly appreciate any help to resolve this. Thanks.
Replies
0
Boosts
0
Views
303
Activity
Jun ’17
RealityView content disappears when selecting Lock In Place on visionOS
I'm experiencing an issue where all RealityView content disappears when the user selects Lock In Place from the window management menu (long press on close button). Follow Me works correctly and this happens in Testflight builds only not reproducible when I run locally I have reproduced this with a minimal project containing nothing but a simple red cube — no custom anchors, no app state, no dependencies. Steps to Reproduce: Open an ImmersiveSpace A red cube is placed 1m in front of the user via RealityView Long press the X button on any floating window Select Lock In Place The cube disappears immediately Expected: Cube remains visible after window is locked Actual: Cube disappears. Note: Follow Me does NOT reproduce this issue. Minimal reproducible code: struct ImmersiveView: View { var body: some View { RealityView { content in let cube = ModelEntity( mesh: .generateBox(size: 0.3), materials: [SimpleMaterial(color: .red, isMetallic: false)] ) cube.setPosition(SIMD3(0, 1.5, -1), re
Replies
1
Boosts
0
Views
1.8k
Activity
Mar ’26
Appintent: openAppWhenRun breaks shortcut when phone is locked
I have an app intent like the one below. If the intent is run via siri when the phone is locked then the user is asked to unlock their phone but the shortcut is interrupted. Is it possible to delay opening the app until the result dialog is returned? import AppIntents struct MyIntent: AppIntent { static var title: LocalizedStringResource = MyApp static var description = IntentDescription(Captures data) static var openAppWhenRun: Bool = true @Parameter(title: The Data) var theData: String @MainActor func perform() async throws -> some IntentResult { _ = try await RESTClient.postData(theData: theData) return .result(dialog:Thank you!) //TODO: Now try to open app } }
Replies
0
Boosts
0
Views
922
Activity
Jun ’23
Live Activity Blanks out when lock screen sleeps.
I have a live activity, that works fine when the Lock Screen showing, but as soon as it sleeps dims down for always on display, everything in the widget disappears and an Activity Indicator(spinner), displays in its place, but non-animating.
Replies
4
Boosts
0
Views
1.1k
Activity
Jul ’24