Search results for

“Account Locked”

32,720 results found

Post

Replies

Boosts

Views

Activity

Lock Icon on Carousel/Poster Images in legacy apple tv
Hi,I need a feature to be implemented in one of our apps. To distinguish between authenticated and unauthenticated videos , I need to display a small Lock icon over the carousel/poster images in the rails.We are able to put this lock icon on the menu items, as there is a specific field in it called accessories with the value lock . But Is there any way to place the image on the rowlists ?
0
0
441
Apr ’17
Widget with relative date text not updating when device is locked
I have a widget that uses a countdown or timer by using a Text view of a date with a style of relative. The first time this widget is viewed on the Today screen in a locked state it gets the correct data, however all subsequent viewing of the widget from a locked device does not change the countdown at all. Even locking, viewing the now correct today screen and then locking again, will go back to the data it seems to have cached on the first viewing of that widget from the locked state. Is there anyway for this relative date to update while the device is locked?
0
0
679
Nov ’21
AlarmKit alarms only showing on lock screen
I am using AlarmKit to schedule alarms in an app I am working on, however my scheduled alarms only show up on the lock screen. If I am on the home screen or elsewhere I only hear the sound of the alarm, but no UI shows up. Environment: iOS 26 beta 3 Xcode 26 beta 3
Topic: UI Frameworks SubTopic: SwiftUI
3
0
285
Jul ’25
Live Activity Stops Updating after iPhone Lock
My background audio app stops updating its Live Activity after the iPhone locks, and doesn't resume updating the activity after tapping the screen or even after FaceID unlocks the device (without opening the lock screen). My live activity requests a ContentState update & iOS updates the content for the activity as below: Task{ log.debug(LiveActivityManager.updateLiveActivity() with new ContentState) await liveActivity.update( ActivityContent(state:contentState, staleDate:nil) ) } Below what my log looks like: <<<>>> DEBUG: LiveActivityManager.updateLiveActivity() with new ContentState iOS: Updating content for activity 0A519263-1E46-4BB6-BA4F-F3DDBC081AB4 DEBUG: LiveActivityManager.updateLiveActivity() with new ContentState iOS: Updating content for activity 0A519263-1E46-4BB6-BA4F-F3DDBC081AB4 <<<Lock iPhone>>>> INFO: --------protectedDataWillBecomeUnavailableNotification-------- DEBUG: LiveActivityManager.updateLiveActivity() with new Con
12
0
4.5k
Mar ’24
Lock Screen on Token Removal Does Not Work on MacOS14
Issue: The screen saver is not shown, and the user is not locked after removing a smart card with a logged in user. I have tried setting tokenRemovalAction to 1, along with various other com.apple.security.smartcard defaults, and I have also tried setting turn on screen saver when login token removed. None of this makes the screen locked on card removal. Is this an issue with MacOS14 or is there a different setting/value that has to be set for this to work correctly?
2
0
1k
Mar ’24
Reply to My Apple account got "locked" and access "denied" - and I have production apps on there
I'm in a similar situation, I have a personal account I've used for years and created a new account for my new business last week. Everything was accepted but this week I've been locked out, I had the same experience as you, went to forgot password, told I had to request access, and then received an email to say request denied. I called the support number that was on the email with my Apple Developer Program invoice and they recommended I submit a support request on developer.apple.com/contact/apple-id which I have now done.
Apr ’25
Upgrading security a step to be able to lock individual app.
Hellow Sir/ Mam from last some years am using apple products. I think this company provide most stable product and in mater of over all device security this brand never compromise but I still think that in mater of individual app security this brand had not think till date. This brand have everything its own and don't recommend to use other's product for example it have Siri for personal assistan, Apple Map for navigation, Apple Music for music lover, iBook for reader etc, which I think are the key features of the brand, but after having everything still if I question Apple that is it possible to lock individual app including all third app the answer I will get that I have to go for third party app. So is possible to develop a app, like Siri which have direct control from device settings, to lock individual app Including all app from Apple and other third party app or else we can say upgrading restrictions option to be able to lock individual apps.THANK YOU
1
0
436
Aug ’17
Opening maps from iOS today extension while screen is locked
Hi all,I have a today extension that opens a map via a call of MKMapItem.openMapsWithItems. It works fine if the phone is not locked, but if the today extension is opened from the lock screen, the call doesn't do anything. I would expect the same to happen if you do an open URL, namely, the screen Touch ID or Enter Passcode appears, and once you unlocked the phone, it continues with opening the URL.Is there any way to achieve the openURL behaviour when opening maps with MKMapItem.openMapsWithItems?Thanks, Markus
0
0
276
Nov ’15
Cannot lock focus with flash, iPhone 10
Hi,I'm having some issues locking the focus and taking a flash photo on iPhone 10 (iOS 12.0). I've made the simplest camera app I can that turns Flash on using a AVCapturePhotoSettings object, locks focus on the AVCaptureDevice using [device setFocusMode:AVCaptureFocusModeLocked]; and then takes a picture using capturePhotoWithSettings.Regardless of the focus lock, auto focus still often happens, particularly when the preview is out of focus. Am I missing a settings, or a new way to lock focus? I have no issues on the iPhone 6 with this code.This is essentially the full app (i have dropped most the error checking in this example, but no errors pop up):// ViewController.h //#import //@interface ViewController : UIViewController //@end #import #import ViewController.h @interface ViewController () @property (nonatomic) AVCaptureSession *session; @property (nonatomic) AVCapturePhotoOutput *stillImageOutput; @property (nonatomic) AVCaptureVideoPreviewLayer *videoPreviewLayer; @p
0
0
1.1k
Jan ’19
MPMusicPlayerController ApplicationMusicPlayer stops playing when the screen locks
I'm using MPMusicPlayerController - ApplicationMusicPlayer with the play audio background mode enabled under Capabilities. When I load and play an iTunes Music track with the applictionMusicPlayer the audio stops when the screen locks or the app goes into the background. My test app also plays bundled audio simultaneously, and that audio continues playing when the screen locks but not the Apple/iTunes music. The issue is in all the betas I've tested.Has anyone else encountered this? Is there a new option that would affect this or is this just an iOS 13 Beta bug? For any interested Apple devs there is a sample app submitted through Feedback Assistant demonstrating this bug. (FB6946855)
3
0
1.6k
Aug ’19
App running in background or when the screen is locked
Hi,My app start to count the seconds when oppened. Follow the code:import UIKitclass ViewController: UIViewController { @IBOutlet weak var label1: UILabel! //Display showing the seconds var i = 0 //Counter override func viewDidLoad() { super.viewDidLoad() // After loading the view. Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(Estouro), userInfo: nil, repeats: true) } @objc func Estouro(){ i = i + 1 label1.text = String(i) //Display seconds }}What can I do to keep counting the secounds in background or after lock the screen?Thank you,
4
0
1.6k
Jun ’20
Saving to Core Data during device locking & unlocking
The following error message SIGABRT: This NSPersistentStoreCoordinator has no persistent stores (device locked). It cannot perform a save operation has indicated need to provide for sequencing of the Core Data context saving operation. We want to avoid .save() if locking is in flight, also postpone .save() until unlocking has completed. Currently our .save() is bracket by do-catch block but this is notably not helping in the case of SIGABR signal Given that our saving operations must take place synchronously, what is the recommended practice to implement such sequencing with respect to locking / unlocking
0
0
534
Sep ’23
Lock-screen image & radio name
Hi,Hope I'm posting to the right place.Made a small UIWebView-based app which opens a site of mine. The site streams an internet radio using <audio> tags - pretty simple and works fine. I then set the audio session category to Playback, so it would work when the phones is locked or other apps are being used. Now when I lock the screen, it looks like this:https://www.upload.ee/image/6704904/IMG_0086.PNGThe pause/play works fine etc, but how could I hide the URL? Even better, replace it with my own text or something? And how could I add my own picture instead of the note?I'd really appreciate if anyone could help me out here 🙂Greetings and thanks in advance!
1
0
233
Feb ’17
Pause Picture in Picture (PIP) when user locks the iPhone?
I am have implemented PIP in my app. When user goes to background while video was playing. App opens PIP and everything works fine. But when user locks the device , PIP is not stopping/Pausing the video. Is there a way I can pause the Video when user locks the device?
Replies
0
Boosts
0
Views
477
Activity
Aug ’24
Lock Icon on Carousel/Poster Images in legacy apple tv
Hi,I need a feature to be implemented in one of our apps. To distinguish between authenticated and unauthenticated videos , I need to display a small Lock icon over the carousel/poster images in the rails.We are able to put this lock icon on the menu items, as there is a specific field in it called accessories with the value lock . But Is there any way to place the image on the rowlists ?
Replies
0
Boosts
0
Views
441
Activity
Apr ’17
Widget with relative date text not updating when device is locked
I have a widget that uses a countdown or timer by using a Text view of a date with a style of relative. The first time this widget is viewed on the Today screen in a locked state it gets the correct data, however all subsequent viewing of the widget from a locked device does not change the countdown at all. Even locking, viewing the now correct today screen and then locking again, will go back to the data it seems to have cached on the first viewing of that widget from the locked state. Is there anyway for this relative date to update while the device is locked?
Replies
0
Boosts
0
Views
679
Activity
Nov ’21
AlarmKit alarms only showing on lock screen
I am using AlarmKit to schedule alarms in an app I am working on, however my scheduled alarms only show up on the lock screen. If I am on the home screen or elsewhere I only hear the sound of the alarm, but no UI shows up. Environment: iOS 26 beta 3 Xcode 26 beta 3
Topic: UI Frameworks SubTopic: SwiftUI
Replies
3
Boosts
0
Views
285
Activity
Jul ’25
Live Activity Stops Updating after iPhone Lock
My background audio app stops updating its Live Activity after the iPhone locks, and doesn't resume updating the activity after tapping the screen or even after FaceID unlocks the device (without opening the lock screen). My live activity requests a ContentState update & iOS updates the content for the activity as below: Task{ log.debug(LiveActivityManager.updateLiveActivity() with new ContentState) await liveActivity.update( ActivityContent(state:contentState, staleDate:nil) ) } Below what my log looks like: <<<>>> DEBUG: LiveActivityManager.updateLiveActivity() with new ContentState iOS: Updating content for activity 0A519263-1E46-4BB6-BA4F-F3DDBC081AB4 DEBUG: LiveActivityManager.updateLiveActivity() with new ContentState iOS: Updating content for activity 0A519263-1E46-4BB6-BA4F-F3DDBC081AB4 <<<Lock iPhone>>>> INFO: --------protectedDataWillBecomeUnavailableNotification-------- DEBUG: LiveActivityManager.updateLiveActivity() with new Con
Replies
12
Boosts
0
Views
4.5k
Activity
Mar ’24
Lock Screen on Token Removal Does Not Work on MacOS14
Issue: The screen saver is not shown, and the user is not locked after removing a smart card with a logged in user. I have tried setting tokenRemovalAction to 1, along with various other com.apple.security.smartcard defaults, and I have also tried setting turn on screen saver when login token removed. None of this makes the screen locked on card removal. Is this an issue with MacOS14 or is there a different setting/value that has to be set for this to work correctly?
Replies
2
Boosts
0
Views
1k
Activity
Mar ’24
Reply to My Apple account got "locked" and access "denied" - and I have production apps on there
I'm in a similar situation, I have a personal account I've used for years and created a new account for my new business last week. Everything was accepted but this week I've been locked out, I had the same experience as you, went to forgot password, told I had to request access, and then received an email to say request denied. I called the support number that was on the email with my Apple Developer Program invoice and they recommended I submit a support request on developer.apple.com/contact/apple-id which I have now done.
Replies
Boosts
Views
Activity
Apr ’25
Upgrading security a step to be able to lock individual app.
Hellow Sir/ Mam from last some years am using apple products. I think this company provide most stable product and in mater of over all device security this brand never compromise but I still think that in mater of individual app security this brand had not think till date. This brand have everything its own and don't recommend to use other's product for example it have Siri for personal assistan, Apple Map for navigation, Apple Music for music lover, iBook for reader etc, which I think are the key features of the brand, but after having everything still if I question Apple that is it possible to lock individual app including all third app the answer I will get that I have to go for third party app. So is possible to develop a app, like Siri which have direct control from device settings, to lock individual app Including all app from Apple and other third party app or else we can say upgrading restrictions option to be able to lock individual apps.THANK YOU
Replies
1
Boosts
0
Views
436
Activity
Aug ’17
Opening maps from iOS today extension while screen is locked
Hi all,I have a today extension that opens a map via a call of MKMapItem.openMapsWithItems. It works fine if the phone is not locked, but if the today extension is opened from the lock screen, the call doesn't do anything. I would expect the same to happen if you do an open URL, namely, the screen Touch ID or Enter Passcode appears, and once you unlocked the phone, it continues with opening the URL.Is there any way to achieve the openURL behaviour when opening maps with MKMapItem.openMapsWithItems?Thanks, Markus
Replies
0
Boosts
0
Views
276
Activity
Nov ’15
Cannot lock focus with flash, iPhone 10
Hi,I'm having some issues locking the focus and taking a flash photo on iPhone 10 (iOS 12.0). I've made the simplest camera app I can that turns Flash on using a AVCapturePhotoSettings object, locks focus on the AVCaptureDevice using [device setFocusMode:AVCaptureFocusModeLocked]; and then takes a picture using capturePhotoWithSettings.Regardless of the focus lock, auto focus still often happens, particularly when the preview is out of focus. Am I missing a settings, or a new way to lock focus? I have no issues on the iPhone 6 with this code.This is essentially the full app (i have dropped most the error checking in this example, but no errors pop up):// ViewController.h //#import //@interface ViewController : UIViewController //@end #import #import ViewController.h @interface ViewController () @property (nonatomic) AVCaptureSession *session; @property (nonatomic) AVCapturePhotoOutput *stillImageOutput; @property (nonatomic) AVCaptureVideoPreviewLayer *videoPreviewLayer; @p
Replies
0
Boosts
0
Views
1.1k
Activity
Jan ’19
MPMusicPlayerController ApplicationMusicPlayer stops playing when the screen locks
I'm using MPMusicPlayerController - ApplicationMusicPlayer with the play audio background mode enabled under Capabilities. When I load and play an iTunes Music track with the applictionMusicPlayer the audio stops when the screen locks or the app goes into the background. My test app also plays bundled audio simultaneously, and that audio continues playing when the screen locks but not the Apple/iTunes music. The issue is in all the betas I've tested.Has anyone else encountered this? Is there a new option that would affect this or is this just an iOS 13 Beta bug? For any interested Apple devs there is a sample app submitted through Feedback Assistant demonstrating this bug. (FB6946855)
Replies
3
Boosts
0
Views
1.6k
Activity
Aug ’19
App running in background or when the screen is locked
Hi,My app start to count the seconds when oppened. Follow the code:import UIKitclass ViewController: UIViewController { @IBOutlet weak var label1: UILabel! //Display showing the seconds var i = 0 //Counter override func viewDidLoad() { super.viewDidLoad() // After loading the view. Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(Estouro), userInfo: nil, repeats: true) } @objc func Estouro(){ i = i + 1 label1.text = String(i) //Display seconds }}What can I do to keep counting the secounds in background or after lock the screen?Thank you,
Replies
4
Boosts
0
Views
1.6k
Activity
Jun ’20
Apple Developer Account not being accepted
for some reason my account says its not available for registration at this time? anyone knows whats the reason for this? I contacted apple call center they say there's nothing they can do. My account is just locked. What are my options?
Replies
0
Boosts
0
Views
5
Activity
1d
Saving to Core Data during device locking & unlocking
The following error message SIGABRT: This NSPersistentStoreCoordinator has no persistent stores (device locked). It cannot perform a save operation has indicated need to provide for sequencing of the Core Data context saving operation. We want to avoid .save() if locking is in flight, also postpone .save() until unlocking has completed. Currently our .save() is bracket by do-catch block but this is notably not helping in the case of SIGABR signal Given that our saving operations must take place synchronously, what is the recommended practice to implement such sequencing with respect to locking / unlocking
Replies
0
Boosts
0
Views
534
Activity
Sep ’23
Lock-screen image & radio name
Hi,Hope I'm posting to the right place.Made a small UIWebView-based app which opens a site of mine. The site streams an internet radio using <audio> tags - pretty simple and works fine. I then set the audio session category to Playback, so it would work when the phones is locked or other apps are being used. Now when I lock the screen, it looks like this:https://www.upload.ee/image/6704904/IMG_0086.PNGThe pause/play works fine etc, but how could I hide the URL? Even better, replace it with my own text or something? And how could I add my own picture instead of the note?I'd really appreciate if anyone could help me out here 🙂Greetings and thanks in advance!
Replies
1
Boosts
0
Views
233
Activity
Feb ’17