Search results for

“Account Locked”

33,559 results found

Post

Replies

Boosts

Views

Activity

getTimeline being called even when the phone is locked
I added some logging to my widget and in console.app I can see that the widget getTimeline method is being called even when the users phone is locked. It's been over an hour with my phone locked and the widgets getTimeline method is still being called when the timeline expires. I want the widget to refresh as little as possible when not visible because every call to our API costs money, I don't want widgets just sitting there hitting our server even if someone isn't looking at it. Is there any way to disable this functionality and reduce the number of getTimeline calls when the widget is not visible or the phone is locked? NOTE: I'm not running the app via xcode just incase that triggers some more frequent update path.
0
0
826
Sep ’20
Unlocking Level Lock with apple Watch or Phone
Hello everyone, I purchased a level lock touch earlier this year. It’s a lock I have on my front door and side door. One of the ways it can be unlocked is with an NFC card. You can tap the card and the lock opens. Since the apple devices have NFC, and so does the level lock touch, I figured there must be a way to just unlock the door by tapping my devices. I asked apple about this and they said they couldn’t help me. I reached out to Level and they said apple will be selling a new level lock + which on October 21st which does exactly what I’m wanting to do….for $329! my question is, if both devices have NFC- couldn’t there just be some type of software update to allow this feature to happen. Instead- someone has to purchase a whole new lock!? I know it’s all about money but it just doesn’t make sense to me. does anyone maybe know of a third party app that can read the level lock nfc card and allow me to open the lock by tapping my device?
2
0
4.8k
Oct ’22
Lock Contention in APFS/Kernel?
Hello! Some colleagues and work on Jujutsu, a version control system compatible with git, and I think we've uncovered a potential lock contention bug in either APFS or the Darwin kernel. There are four contributing factors to us thinking this is related to APFS or the Kernel: jj's testsuite uses nextest, a test runner for Rust that spawns each individual test as a separate process. The testsuite slowed down by a factor of ~5x on macOS after jj started using fsync. The slowdown increases as additional cores are allocated. A similar slowdown did not occur on ext4. Similar performance issues were reported in the past by a former Mercurial maintainer: https://gregoryszorc.com/blog/2018/10/29/global-kernel-locks-in-apfs/. My friend and colleague André has measured the test suite on an M3 Ultra with both a ramdisk and a traditional SSD and produced this graph: (The most thorough writeup is the discussion on this pull request.) I know I should file a feedback/bug report, but before I do, I'm strugg
9
0
518
Sep ’25
WatchOS 3 Water Lock Programatically
Hi,We're working on an application for water sports, and are running into a few interesting issues. The first (and most important issue) is that there doesn't seem to be any way of initiating the device's Water Lock programatically? I'm really hoping that I'm missing something obvious because this would essentially kill all water-based apps before they even get off the ground. Does anyone know if it's possible to initiate Water Lock Programatically?Thanks!
4
0
884
Sep ’16
MFA MacOS At ScreenSaver (Lock Screen).
Hi , I did The MFA(2FA) of Email OTP For MacOS Login Screen using, Authorization Plugin, Using This git hub project. It is working For Login Screen , Im trying to Add The Same plugin for LockScreen but it is not working at lock Screen , Below is the reffrense theard For The issue , https://developer.apple.com/forums/thread/127614, please Share The Code that should Present the NSwindow at Screen Saver (Lock Screen) MacOS .
4
0
975
Sep ’24
89 / 5.000 Kết quả dịch Kết quả bản dịch Apple locks company accounts for no reason, affecting the company's business strategy
We are the company with around 1500 staff from Vietnam. A stranger used our company DUNS number to register for an Apple account. After a period of fighting and proving with Apple, we got our account back. However, after that Apple notified us as shown below and locked the account. I received no explanation from Apple. I don't understand why Apple allowed our company's DUNS number to register an invalid account. And now affects the company's digital transformation plan and business strategy. Obviously this is Apple's fault but we as customers have to bear it. I don't know what to do next. Please provide us the advice Email from Apple: We're contacting you regarding your request to reinstate your Apple Developer Program membership, which was terminated on 2024-02-09. After a thorough evaluation, we aren’t granting your appeal to reinstate the Apple Developer Program. Please note that this decision is final. We won’t process subsequent appeals. Sincerely, Apple Devel
1
0
550
Apr ’24
MacOS Mojave Locks Up
Since a few weeks now, two of my Macs running Mojave lock up occasionally for 1 to 3 minutes. After that, it replays any mouse click that it omitted while blocked. Sometimes it is still possible to switch to console and the ps top is below. Has anyone else experienced something like that? I can't find an incident on the Web which would really match. I would suspect a recent update to cause that. I am not sure whether secd is really at fault as it is difficult to record the system state once the system locks up. Activity Monitor is also not helpful for the same reason, even if I keep it running. It seems to happen more often immediately after boot. Once working a while, chances are less for it to lock up. Upgrading the OS is currently not an option since I need to work on software not supported in Catalina. USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND chris 8179 98.6 8.4 18616316 704848 ?? U Mon09PM 71:38.35 /usr/libexec/secd chris 18667 10.0 1.7 106934540 140388 ?? Ss 10:
1
0
279
Oct ’20
Change screen lock controls at runtime
My app is divided into two modules. For first module, even after screen lock the audio should play and the locked screen should show details related to media content. However, in the second module no special requirement is there. The audio should be stopped as soon as the screen is locked and no controls should be visible on the locked screen.For first module, I wrote the following piece of codeIn my appdelegate I implemented:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { MPRemoteCommandCenter *rcc = [MPRemoteCommandCenter sharedCommandCenter]; [[rcc skipForwardCommand] setEnabled:NO]; [[rcc skipBackwardCommand] setEnabled:NO]; [[rcc nextTrackCommand] setEnabled:NO]; [[rcc previousTrackCommand] setEnabled:NO]; [[rcc skipForwardCommand] setEnabled:NO]; [[rcc skipBackwardCommand] setEnabled:NO]; rcc.playCommand.enabled = YES; rcc.pauseCommand.enabled = YES; [[MPRemoteCommandCenter sharedCommandCenter].playCommand
0
0
1k
May ’17
App being launched while device is locked
DESCRIPTION OF PROBLEM Logs and data from our application indicate various errors that strongly suggest that our application is being launched in a state in which the device is likely locked. We are looking for guidance on how to identify, debug, reproduce, and fix these cases. Our application does not use any of the common mechanisms for background activity, such as Background App Refresh, Navigation, Audio, etc. Errors we get in our logs such as authorization denied (code: 23) when trying to access a file in our app's container on disk (a simple disk cache for data our application uses) strongly suggest that the device is operating in a state, such as being locked, where our application lacks the requisite permissions it would normally have during operation. Furthermore, attempts to access authentication information stored in the keychain also fails. We use kSecAttrAccessibleWhenUnlocked when accessing items we store in the keychain. We have investigated Prewarming, as well as our notifica
1
0
611
Jan ’25
XIB all View locked and can't unlock them
I have a big issue. In the InterfaceBuilder all view locked. if i use the menu: Localization Locking Reset Locking Control or Nothing, this works not. Have anyone an idea? Clean up the build or removing the xib file and add it again doesn't work also not.
Replies
1
Boosts
0
Views
1.2k
Activity
Jan ’23
getTimeline being called even when the phone is locked
I added some logging to my widget and in console.app I can see that the widget getTimeline method is being called even when the users phone is locked. It's been over an hour with my phone locked and the widgets getTimeline method is still being called when the timeline expires. I want the widget to refresh as little as possible when not visible because every call to our API costs money, I don't want widgets just sitting there hitting our server even if someone isn't looking at it. Is there any way to disable this functionality and reduce the number of getTimeline calls when the widget is not visible or the phone is locked? NOTE: I'm not running the app via xcode just incase that triggers some more frequent update path.
Replies
0
Boosts
0
Views
826
Activity
Sep ’20
Disable camera from the lock screen
Hello,Is there way to set up the settings programmatically - to disable access to camera from the lock screen?We would like implement this feature for application that run on iOS 9 and 10.Could you please provide a reference us to API to do that?Thank you!
Replies
4
Boosts
0
Views
289
Activity
Jan ’17
Unlocking Level Lock with apple Watch or Phone
Hello everyone, I purchased a level lock touch earlier this year. It’s a lock I have on my front door and side door. One of the ways it can be unlocked is with an NFC card. You can tap the card and the lock opens. Since the apple devices have NFC, and so does the level lock touch, I figured there must be a way to just unlock the door by tapping my devices. I asked apple about this and they said they couldn’t help me. I reached out to Level and they said apple will be selling a new level lock + which on October 21st which does exactly what I’m wanting to do….for $329! my question is, if both devices have NFC- couldn’t there just be some type of software update to allow this feature to happen. Instead- someone has to purchase a whole new lock!? I know it’s all about money but it just doesn’t make sense to me. does anyone maybe know of a third party app that can read the level lock nfc card and allow me to open the lock by tapping my device?
Replies
2
Boosts
0
Views
4.8k
Activity
Oct ’22
Lock Contention in APFS/Kernel?
Hello! Some colleagues and work on Jujutsu, a version control system compatible with git, and I think we've uncovered a potential lock contention bug in either APFS or the Darwin kernel. There are four contributing factors to us thinking this is related to APFS or the Kernel: jj's testsuite uses nextest, a test runner for Rust that spawns each individual test as a separate process. The testsuite slowed down by a factor of ~5x on macOS after jj started using fsync. The slowdown increases as additional cores are allocated. A similar slowdown did not occur on ext4. Similar performance issues were reported in the past by a former Mercurial maintainer: https://gregoryszorc.com/blog/2018/10/29/global-kernel-locks-in-apfs/. My friend and colleague André has measured the test suite on an M3 Ultra with both a ramdisk and a traditional SSD and produced this graph: (The most thorough writeup is the discussion on this pull request.) I know I should file a feedback/bug report, but before I do, I'm strugg
Replies
9
Boosts
0
Views
518
Activity
Sep ’25
Reply to Urgent Assistance Required – Inaccessible Account Holder for Apple Developer Organization Account
Hello, I would like to get more information. What error do you see when you try and log into https://account.apple.com or https://business.apple.com When it states the account is locked, steps to be taken are listed in the same pop-up.  Travis Trotto - DTS Engineer
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Feb ’26
WatchOS 3 Water Lock Programatically
Hi,We're working on an application for water sports, and are running into a few interesting issues. The first (and most important issue) is that there doesn't seem to be any way of initiating the device's Water Lock programatically? I'm really hoping that I'm missing something obvious because this would essentially kill all water-based apps before they even get off the ground. Does anyone know if it's possible to initiate Water Lock Programatically?Thanks!
Replies
4
Boosts
0
Views
884
Activity
Sep ’16
MFA MacOS At ScreenSaver (Lock Screen).
Hi , I did The MFA(2FA) of Email OTP For MacOS Login Screen using, Authorization Plugin, Using This git hub project. It is working For Login Screen , Im trying to Add The Same plugin for LockScreen but it is not working at lock Screen , Below is the reffrense theard For The issue , https://developer.apple.com/forums/thread/127614, please Share The Code that should Present the NSwindow at Screen Saver (Lock Screen) MacOS .
Replies
4
Boosts
0
Views
975
Activity
Sep ’24
89 / 5.000 Kết quả dịch Kết quả bản dịch Apple locks company accounts for no reason, affecting the company's business strategy
We are the company with around 1500 staff from Vietnam. A stranger used our company DUNS number to register for an Apple account. After a period of fighting and proving with Apple, we got our account back. However, after that Apple notified us as shown below and locked the account. I received no explanation from Apple. I don't understand why Apple allowed our company's DUNS number to register an invalid account. And now affects the company's digital transformation plan and business strategy. Obviously this is Apple's fault but we as customers have to bear it. I don't know what to do next. Please provide us the advice Email from Apple: We're contacting you regarding your request to reinstate your Apple Developer Program membership, which was terminated on 2024-02-09. After a thorough evaluation, we aren’t granting your appeal to reinstate the Apple Developer Program. Please note that this decision is final. We won’t process subsequent appeals. Sincerely, Apple Devel
Replies
1
Boosts
0
Views
550
Activity
Apr ’24
Reply to Too many verification codes have been sent.
I am experiencing the same issue. Do you have an Apple device associated with your Apple account? I’ve been locked out for 6 weeks. The “too many codes” issue does not seem to clear itself no matter how long I wait in between login attempts.
Replies
Boosts
Views
Activity
May ’25
MacOS Mojave Locks Up
Since a few weeks now, two of my Macs running Mojave lock up occasionally for 1 to 3 minutes. After that, it replays any mouse click that it omitted while blocked. Sometimes it is still possible to switch to console and the ps top is below. Has anyone else experienced something like that? I can't find an incident on the Web which would really match. I would suspect a recent update to cause that. I am not sure whether secd is really at fault as it is difficult to record the system state once the system locks up. Activity Monitor is also not helpful for the same reason, even if I keep it running. It seems to happen more often immediately after boot. Once working a while, chances are less for it to lock up. Upgrading the OS is currently not an option since I need to work on software not supported in Catalina. USER PID %CPU %MEM VSZ RSS TT STAT STARTED TIME COMMAND chris 8179 98.6 8.4 18616316 704848 ?? U Mon09PM 71:38.35 /usr/libexec/secd chris 18667 10.0 1.7 106934540 140388 ?? Ss 10:
Replies
1
Boosts
0
Views
279
Activity
Oct ’20
show caps lock icon in textField
That'a OSX App, XCode 9.2.Is there a way (in IB) to show at the right of a textField that caps is locked ? Or must it be done programmatically only ?
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
0
Boosts
0
Views
807
Activity
Nov ’17
Reply to Not able to buy Apple TV Developer Kit
I have the same issue, a member on here has said you need to email developer support...the turn around for that is a day....I think it will take longer.Can I ask though, do you have an Apple Music Subscription? - I think my account is locked for country changes until it expires.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
Change screen lock controls at runtime
My app is divided into two modules. For first module, even after screen lock the audio should play and the locked screen should show details related to media content. However, in the second module no special requirement is there. The audio should be stopped as soon as the screen is locked and no controls should be visible on the locked screen.For first module, I wrote the following piece of codeIn my appdelegate I implemented:- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { MPRemoteCommandCenter *rcc = [MPRemoteCommandCenter sharedCommandCenter]; [[rcc skipForwardCommand] setEnabled:NO]; [[rcc skipBackwardCommand] setEnabled:NO]; [[rcc nextTrackCommand] setEnabled:NO]; [[rcc previousTrackCommand] setEnabled:NO]; [[rcc skipForwardCommand] setEnabled:NO]; [[rcc skipBackwardCommand] setEnabled:NO]; rcc.playCommand.enabled = YES; rcc.pauseCommand.enabled = YES; [[MPRemoteCommandCenter sharedCommandCenter].playCommand
Replies
0
Boosts
0
Views
1k
Activity
May ’17
App being launched while device is locked
DESCRIPTION OF PROBLEM Logs and data from our application indicate various errors that strongly suggest that our application is being launched in a state in which the device is likely locked. We are looking for guidance on how to identify, debug, reproduce, and fix these cases. Our application does not use any of the common mechanisms for background activity, such as Background App Refresh, Navigation, Audio, etc. Errors we get in our logs such as authorization denied (code: 23) when trying to access a file in our app's container on disk (a simple disk cache for data our application uses) strongly suggest that the device is operating in a state, such as being locked, where our application lacks the requisite permissions it would normally have during operation. Furthermore, attempts to access authentication information stored in the keychain also fails. We use kSecAttrAccessibleWhenUnlocked when accessing items we store in the keychain. We have investigated Prewarming, as well as our notifica
Replies
1
Boosts
0
Views
611
Activity
Jan ’25