Search results for

“Account Locked”

36,235 results found

Post

Replies

Boosts

Views

Activity

scenePhase not behaving as expected on screen lock
Seeing weird sequences of changes when locking the screen when view is visable. .onChange(of: scenePhase) { phase in if phase == .active { if UIApplication.shared.applicationState == .active { print(KDEBUG: App genuinely became active) } else { print(KDEBUG: False active signal detected) } } else if phase == .inactive { print(KDEBUG: App became inactive) // Handle inactive state if needed } else if phase == .background { print(KDEBUG: App went to background) // Handle background state if needed } } seen: (locks screen) KDEBUG: App became inactive KDEBUG: App genuinely became active KDEBUG: App went to background expected (locks screen) KDEBUG: App became inactive KDEBUG: App went to background
2
0
148
Mar ’25
How can I receive battery level notification when lock screen?
Hello!I am working on an APP (Mister Battery on Apple store) which can help the user to calculate the battery charge speed. After Apple using the new background model, I can't receive any battery level notification when lock screen. Before iOS 12, I was using UIApplicationExitsOnSuspend = true which was deprecated, it works very well. I don't send any data to server when in the background or play music or something, so all the background mode seems don't fit for my APP. I know there is a queue will send the notification when the APP back to front. I am wondering is there any way to receive batteryLevelDidChangeNotification when the APP is in lock screen even in background?Thanks!Joe
0
0
616
Sep ’19
Real-time audio application on locked device
I would like to inquire about the feasibility of developing an iOS application with the following requirements: The app must support real-time audio communication based on UDP. It needs to maintain a TCP signaling connection, even when the device is locked. The app will run only on selected devices within a controlled (closed) environment, such as company-managed iPads or iPhones. Could you please clarify the following: Is it technically possible to maintain an active TCP connection when the device is locked? What are the current iOS restrictions or limitations for background execution, particularly related to networking and audio? Are there any recommended APIs or frameworks (such as VoIP, PushKit, or Background Modes) suitable for this type of application?
1
0
418
Jun ’25
subscription is locked on waiting for review
Hey, I've been having a frustrating time with Apple regarding my app's submission. I initially submitted a build (version 1.2.27) of my app that included a Full Access subscription feature. Shortly after, I decided to cancel this submission to update and resubmit a newer version. But now, I'm stuck because the Full Access subscription seems locked in a Waiting for Review status. This means I can't select it for my new submission. I reached out to Apple Support for help. I explained that my problem isn't with canceling the submission but with being unable to choose the Full Access subscription for the new version. They responded quickly but only provided a link to manage version submissions, which doesn't really address my specific issue. So, I had to clarify again that I need guidance on how to unlock the subscription from its current status so I can move forward with my app's resubmission. It's a bit of a loop, and I'm still waiting for a solution from them.
1
0
614
Nov ’23
Locked out of Apple Developer portal
Hi Guys,I recently found that my credit card expired for my Apple ID. I successfully signed in on Apple Developer portal, but when trying to change credit card, it asks for security questions like You dream job or Your first car or Where were you on January 1, 2000. I have no idea whether I enetered Programming or Software Development or Helicopter Pilot and I don't remember how I entered my car Brand, Brand - Type or in what format. I tried to reset security questions, so I had to enter password again and it sent some security code to my iPad. I entered it, then it asked to set security questions. Since this is very unrealiable way of signing in, because after a time your feelings about the best movie or favourite teacher could change over time. So I hit Cancel, hoping that I will be able to get to settings and completely disable security questions. I started again, but now I'm getting error Cannot Reset Security Questions. We don't have sufficient information to reset your security questions..Now I cannot a
1
0
2.2k
Jan ’17
Keeping alive a packet tunnel provider while phone is locked
We are working on an app which includes a packet tunnel provider extension. The packet tunnel provider works by relaying traffic from a device on the same Wi-Fi network to a remote server via the iPhone's cell socket. As such, it is important for the VPN (and the Wi-Fi connection) to remain running while the phone is locked. We have however noticed that when we lock the phone, the VPN stops running a few seconds later and will remain inactive until the phone's screen wakes up. We have set disconnectOnSleep to false but the issue still remains. Is there a way to keep the VPN alive while the phone is locked?
1
0
533
Jun ’24
Display Rotation After Lock
I'm running a MacBook Pro 13,2 with 17A264c. I've got a CalDigit Thunderbolt dock connected (via the ThunderBolt 2 - 3 adapter.) Connected to the dock I have an Apple ThunderBolt display and a Dell 24 display (connected via HDMI and rotated to Portrait.). What I'm finding is that whenever the machine is locked (either via Screen Saver or Screen Sleep) the Dell monitor comes back in landscape mode -- sort of. Although the content on the monitor shows in landscape, the Rotation options in the Displays preferences still show as rotated to 90 degrees. Mouse interfaces also seem to be confused -- I have to click as if the dialog box were actually showing correctly, rather than clicking on the rotation drop-down as it shows on the screen. I then have to switch the display to 0 degrees, and then back again to 90 degrees, before it shows content properly. A reboot will generally fix the issue, but disconnecting and reconnecting the monitor will not. Anyone else have similar issues?
0
0
504
Jun ’17
applicationMusicPlayer With Lock Screen Controls
Hi From the following statement in the official apple docUsers can initiate audio playback commands through an external headset or accessory. These commands are sent to the app as remote-control events. To receive remote-control events in your app, you must use an application music player. If you use the system music player, your app uses the Music app to play audio, which means that the Music app is the “now playing” app. The Music app receives the remote control events, not your app. However, the Music app responds to remote control events on your behalf. For example, if your app plays audio using the system music player, and you switch from your app to the iOS device’s Now Playing controls, the controls work as expected. That is, you can play or pause audio or skip to the next and previous items.I thought one should receive remotecontrols in his app when using the following function to get a musicplayer controllerclass func applicationMusicPlayer() -> MPMusicPlayerControllerhowever when my app plays mus
1
0
1.2k
Oct ’15
MPNowPlayingInfo doesnt update Control Center on the lock screen
HelloI started a playback using AVAudioSession Playback Category using AVPlayer and subscribed for the remote notifications.Then I tapped lock screen. My audio is playing and MPNowPlayingInfo updates lock screen info right way. The background task is started also.Then I tapped next button. My logic stopped AVPlayer and started a playback using MPMusicPlayerController.SystemMusicPlayer for iTunes songs.SystemMusicPlayer updates lock screen playback info right way.Then I tapped next button. My logic started a playback of next song using AVPlayer using MixWithOthers audiosession. The playback started, but I cant no longer update Lock Screen Playback Info (title, artistname, artwork) until I make an app active again.Background Modes are configured right way with support background audio.Hope, somebody faced the same issue.
1
0
1.1k
Feb ’18
scenePhase not behaving as expected on screen lock
Seeing weird sequences of changes when locking the screen when view is visable. .onChange(of: scenePhase) { phase in if phase == .active { if UIApplication.shared.applicationState == .active { print(KDEBUG: App genuinely became active) } else { print(KDEBUG: False active signal detected) } } else if phase == .inactive { print(KDEBUG: App became inactive) // Handle inactive state if needed } else if phase == .background { print(KDEBUG: App went to background) // Handle background state if needed } } seen: (locks screen) KDEBUG: App became inactive KDEBUG: App genuinely became active KDEBUG: App went to background expected (locks screen) KDEBUG: App became inactive KDEBUG: App went to background
Replies
2
Boosts
0
Views
148
Activity
Mar ’25
How can I receive battery level notification when lock screen?
Hello!I am working on an APP (Mister Battery on Apple store) which can help the user to calculate the battery charge speed. After Apple using the new background model, I can't receive any battery level notification when lock screen. Before iOS 12, I was using UIApplicationExitsOnSuspend = true which was deprecated, it works very well. I don't send any data to server when in the background or play music or something, so all the background mode seems don't fit for my APP. I know there is a queue will send the notification when the APP back to front. I am wondering is there any way to receive batteryLevelDidChangeNotification when the APP is in lock screen even in background?Thanks!Joe
Replies
0
Boosts
0
Views
616
Activity
Sep ’19
Real-time audio application on locked device
I would like to inquire about the feasibility of developing an iOS application with the following requirements: The app must support real-time audio communication based on UDP. It needs to maintain a TCP signaling connection, even when the device is locked. The app will run only on selected devices within a controlled (closed) environment, such as company-managed iPads or iPhones. Could you please clarify the following: Is it technically possible to maintain an active TCP connection when the device is locked? What are the current iOS restrictions or limitations for background execution, particularly related to networking and audio? Are there any recommended APIs or frameworks (such as VoIP, PushKit, or Background Modes) suitable for this type of application?
Replies
1
Boosts
0
Views
418
Activity
Jun ’25
My iphone is locked up, it does not turn on
my iphone is lockedil mio iphone è bloccato con il logo della mela e non riesco più ad andare avanti ho provato a metterlo in DFU MODE ma nientemi potreste aiutareMy iphone is locked with the apple logo and i can not go any further I tried to put it in DFU MODE but nothing You could help me
Replies
0
Boosts
0
Views
275
Activity
Jul ’17
subscription is locked on waiting for review
Hey, I've been having a frustrating time with Apple regarding my app's submission. I initially submitted a build (version 1.2.27) of my app that included a Full Access subscription feature. Shortly after, I decided to cancel this submission to update and resubmit a newer version. But now, I'm stuck because the Full Access subscription seems locked in a Waiting for Review status. This means I can't select it for my new submission. I reached out to Apple Support for help. I explained that my problem isn't with canceling the submission but with being unable to choose the Full Access subscription for the new version. They responded quickly but only provided a link to manage version submissions, which doesn't really address my specific issue. So, I had to clarify again that I need guidance on how to unlock the subscription from its current status so I can move forward with my app's resubmission. It's a bit of a loop, and I'm still waiting for a solution from them.
Replies
1
Boosts
0
Views
614
Activity
Nov ’23
GPS lock on iPhone 7 vs iPhone 6
Our application pulls the lat/long coordinates for a phone's given location. It works great on every iPhone 5 and 6 we have tested, but iPhone 7's are having issues getting a good GPS signal lock. Are there any known issues with the iPhone 7 not being able to get a GPS lock?
Replies
0
Boosts
0
Views
526
Activity
Sep ’17
Live Photo not playing on Lock Screen
Has anyone experienced the subject issue on iPhone 6S with 3D touch enabled?Tried custom Live Photos and built-in Live Photo Wallpapers. None will animate when touching/pressing on Lock Screen.Maybe I should file a bug report?Any suggestions.Thanks.
Replies
1
Boosts
0
Views
1.3k
Activity
Jun ’18
Clearing activation lock returns 404
For the past 2+ years I have been using the same process/code to enable and disabling/clearing activation lock from a device and since last week trying to clear the code is returning a 404 error response: 404 Not Found 404 Not Found Apple I can confirm that the request looks ok and all the necessary params are being sent as expected.
Replies
4
Boosts
0
Views
1.9k
Activity
Dec ’22
Locked out of Apple Developer portal
Hi Guys,I recently found that my credit card expired for my Apple ID. I successfully signed in on Apple Developer portal, but when trying to change credit card, it asks for security questions like You dream job or Your first car or Where were you on January 1, 2000. I have no idea whether I enetered Programming or Software Development or Helicopter Pilot and I don't remember how I entered my car Brand, Brand - Type or in what format. I tried to reset security questions, so I had to enter password again and it sent some security code to my iPad. I entered it, then it asked to set security questions. Since this is very unrealiable way of signing in, because after a time your feelings about the best movie or favourite teacher could change over time. So I hit Cancel, hoping that I will be able to get to settings and completely disable security questions. I started again, but now I'm getting error Cannot Reset Security Questions. We don't have sufficient information to reset your security questions..Now I cannot a
Replies
1
Boosts
0
Views
2.2k
Activity
Jan ’17
Keeping alive a packet tunnel provider while phone is locked
We are working on an app which includes a packet tunnel provider extension. The packet tunnel provider works by relaying traffic from a device on the same Wi-Fi network to a remote server via the iPhone's cell socket. As such, it is important for the VPN (and the Wi-Fi connection) to remain running while the phone is locked. We have however noticed that when we lock the phone, the VPN stops running a few seconds later and will remain inactive until the phone's screen wakes up. We have set disconnectOnSleep to false but the issue still remains. Is there a way to keep the VPN alive while the phone is locked?
Replies
1
Boosts
0
Views
533
Activity
Jun ’24
Display Rotation After Lock
I'm running a MacBook Pro 13,2 with 17A264c. I've got a CalDigit Thunderbolt dock connected (via the ThunderBolt 2 - 3 adapter.) Connected to the dock I have an Apple ThunderBolt display and a Dell 24 display (connected via HDMI and rotated to Portrait.). What I'm finding is that whenever the machine is locked (either via Screen Saver or Screen Sleep) the Dell monitor comes back in landscape mode -- sort of. Although the content on the monitor shows in landscape, the Rotation options in the Displays preferences still show as rotated to 90 degrees. Mouse interfaces also seem to be confused -- I have to click as if the dialog box were actually showing correctly, rather than clicking on the rotation drop-down as it shows on the screen. I then have to switch the display to 0 degrees, and then back again to 90 degrees, before it shows content properly. A reboot will generally fix the issue, but disconnecting and reconnecting the monitor will not. Anyone else have similar issues?
Replies
0
Boosts
0
Views
504
Activity
Jun ’17
applicationMusicPlayer With Lock Screen Controls
Hi From the following statement in the official apple docUsers can initiate audio playback commands through an external headset or accessory. These commands are sent to the app as remote-control events. To receive remote-control events in your app, you must use an application music player. If you use the system music player, your app uses the Music app to play audio, which means that the Music app is the “now playing” app. The Music app receives the remote control events, not your app. However, the Music app responds to remote control events on your behalf. For example, if your app plays audio using the system music player, and you switch from your app to the iOS device’s Now Playing controls, the controls work as expected. That is, you can play or pause audio or skip to the next and previous items.I thought one should receive remotecontrols in his app when using the following function to get a musicplayer controllerclass func applicationMusicPlayer() -> MPMusicPlayerControllerhowever when my app plays mus
Replies
1
Boosts
0
Views
1.2k
Activity
Oct ’15
Issue answer callkit from locked screen
I am using Pushkit + Callkit and I am facing issue: I receive incoming call when device is locked screen state then I answer and end call. The next incoming call will alway display on left corner screen device as below image. If I receive incoming call when device is unlocked screen state, my application receive, answer call and end call normally.
Replies
0
Boosts
0
Views
746
Activity
May ’24
MPNowPlayingInfo doesnt update Control Center on the lock screen
HelloI started a playback using AVAudioSession Playback Category using AVPlayer and subscribed for the remote notifications.Then I tapped lock screen. My audio is playing and MPNowPlayingInfo updates lock screen info right way. The background task is started also.Then I tapped next button. My logic stopped AVPlayer and started a playback using MPMusicPlayerController.SystemMusicPlayer for iTunes songs.SystemMusicPlayer updates lock screen playback info right way.Then I tapped next button. My logic started a playback of next song using AVPlayer using MixWithOthers audiosession. The playback started, but I cant no longer update Lock Screen Playback Info (title, artistname, artwork) until I make an app active again.Background Modes are configured right way with support background audio.Hope, somebody faced the same issue.
Replies
1
Boosts
0
Views
1.1k
Activity
Feb ’18
Restriction locks up iPad Air 2
setting or unsetting any item in General/restrictions locks u my ipad in a way I've never seen before - it becomes completgely unresponsive to any user input excpet Power/Home to reboot it (if this is not done it reboots by itself after a few minutes).
Replies
0
Boosts
0
Views
127
Activity
Jun ’15