Search results for

“Account Locked”

36,239 results found

Post

Replies

Boosts

Views

Activity

Account deletion requirements for non-personal accounts
The new account deletion requirements stated in the app review guidelines (5.1.1(v)) state that: If your app supports account creation, you must also offer account deletion within the app. But what about if the account is owned by a different entity than the user itself, such as for someone using a work account that is owned by their employer? Are we still obligated to offer the employee a way to delete their account within the app?
1
0
889
Dec ’21
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
853
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
221
Jun ’26
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
521
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
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
943
Jun ’23
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.9k
Mar ’26
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
Why Can the Recording Be Normal After the Phone Screen Is Locked During the Allocation Process of Instruments?
When I use Instruments to record Allocation, the phone will display a dialog box indicating that the phone is unlocked when the screen is locked, as shown in Figure 1. When I have started recording allocation and lock the screen 10s later, the allocation can be recorded normally. For details, see Figure 2. I want to know why. Start recording for 10s and lock the screen on the device. The recording can be performed normally. What is the principle of this?
1
0
703
Jan ’24
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
309
Jun ’17
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
Account deletion requirements for non-personal accounts
The new account deletion requirements stated in the app review guidelines (5.1.1(v)) state that: If your app supports account creation, you must also offer account deletion within the app. But what about if the account is owned by a different entity than the user itself, such as for someone using a work account that is owned by their employer? Are we still obligated to offer the employee a way to delete their account within the app?
Replies
1
Boosts
0
Views
889
Activity
Dec ’21
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
853
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
221
Activity
Jun ’26
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
521
Activity
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?
Replies
0
Boosts
0
Views
1.2k
Activity
Sep ’16
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
943
Activity
Jun ’23
My Account
Why did not you authorize my account?
Replies
0
Boosts
0
Views
317
Activity
Jul ’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.9k
Activity
Mar ’26
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
Why Can the Recording Be Normal After the Phone Screen Is Locked During the Allocation Process of Instruments?
When I use Instruments to record Allocation, the phone will display a dialog box indicating that the phone is unlocked when the screen is locked, as shown in Figure 1. When I have started recording allocation and lock the screen 10s later, the allocation can be recorded normally. For details, see Figure 2. I want to know why. Start recording for 10s and lock the screen on the device. The recording can be performed normally. What is the principle of this?
Replies
1
Boosts
0
Views
703
Activity
Jan ’24
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
309
Activity
Jun ’17
Accounts
how i can check tge emails that a site sent me in my apple security account
Replies
1
Boosts
0
Views
332
Activity
Jan ’22
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.2k
Activity
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
Replies
4
Boosts
0
Views
1.4k
Activity
Sep ’17