Search results for

“Account Locked”

36,237 results found

Post

Replies

Boosts

Views

Activity

What is the icon size for lock screen media player?
My app uses HTML audio to play a live stream onto the iPhone lock screen. However, my app's icon (which is shown instead of album art) is shown under-size and has a grey box surrounding it, as if to suggest the canvas for the icon is larger than what the app's icon is providing.Does anybody know the required icon size for iOS 11 to fill this media player space?
0
0
714
Oct ’17
Main thread locks during debugging
One of our apps does most of its work in an NSOperation subclass, and most of the work involves sending hundreds of AppleScripts to InDesign. We only send them on the main thread via:dispatch_sync(dispatch_get_main_queue(), ^{ [self _runAppleScriptWithDict:infoDict];});Since upgrading from an old MacBook Pro running 10.10.x and whatever Xcode it could handle to a fairly new one running 10.13..6 and Xcode 10.1, I've been seeing a lot of problems when debugging, stopping at breakpoints, then either stepping or continuing when the next line involves sending an AppleScript on the main thread. The main thread looks like:#00x00007fff54fefaee in __psynch_rw_wrlock ()#10x0000000100e109a9 in _pthread_rwlock_lock_wait ()#20x0000000100e108f0 in _pthread_rwlock_lock_slow ()#30x00000001005ff39d in enter_stack_in_backtrace_uniquing_table ()#40x00000001005fb92e in gcd_queue_item_enqueue_hook ()#50x0000000100dbe085 in _dispatch_introspection_queue_item_enqueue_hook ()#60x0000000100da5794 in _dispatch_root_queue_push_override
6
0
7.6k
Jan ’19
Lock Screen Notifications - Swipe to open removed?
Is the change to notifications on lock screen intentional? I can no longer swipe a notification to go directly to that app. For example, received a iMessage, now I can only use 3D Touch to open the popup method, or I have to unlock and go to message and open the message. iOS 10 you could swipe the notifcation and go directly to the message. Same applies for other apps - yelp, messenger, facebook, twitter, etc.
4
0
5.5k
Jun ’17
iOS 11 lock screen appears randomly on iPad
I have 39 iPads Air (WIFI) iOS 11.2.6 was reinstalling using iTunes.App on guitded access, display auto-lock - never, do not disturd - on, notifications - neverSometimes the screen is blocked randomly on one of the iPadon iOS 10 there was no problem.this happens after receiving a message from apple find out what's new in iOS 11https://drive.google.com/file/d/1HWJ8oqFH-tLGQdJUcyrDn03oUdT2X8oi/view?usp=sharing iPad logs. screen lock 27.03.2018 at 13:05
1
0
879
Mar ’18
How to disable/hide Audio Controls on lock screen from WkWebView
Hi, I am trying to remove the audio controls for my app on the lock screen. Since I use WKWebView, there are 3 audio tags in my html and I play and pause em via JS. However, if I do not play any sound since app launch, there are no audio controls on the lock screen. But if I play one of those 3 files (they are even less then 3 Sec sound effects e.g. for buttons) the audio controls appears on lock screen. Note even when the sounds on pause() or not playing they were listed on the lock screen. What I have tried so far without success MPNowPlayingInfoCenter.default().nowPlayingInfo = [:] and ``try audioSession.setCategory(.playback, mode: .default, options: []) try audioSession.setActive(false, options: .notifyOthersOnDeactivation)`` and UIApplication.shared.endReceivingRemoteControlEvents() Another problem is that the app scales with iOS system settings display zoom. Is there a way to deny it? It is latest Xcode verion 16.3 and iOS 18. I have no background mode in my Capabili
2
0
288
May ’25
how to unlock iCloud/bypass activation code on locked iPhone
Please Help, I was updating to 10.0.2, on my iPhone 6 S Plus on Friday after rebooting. My phone will not go passed the Activation code. I keep getting a locked out error, how do I unlock or bypass iCloud activation lock on iPhone 6s plus. I am the original owner of this phone and for some reason it thinks my iCloud action starts with a y......@icloud.com which it does not. All other Apple equipment that I own I have had no issues with this update. I gone to the carrier Verizon and to Best Buy and both have told to contactApple support.
1
0
6.5k
Oct ’16
Any way to implement a lock in Metal Shader Language?
HI - I'm trying to implement a Barnes-Hut N-Body simulation code in Metal. The code requires construction of a tree. The CUDA implementation uses locks to allow insertion of new nodes into the tree. I've tried using an array of atomic ints in a test case, but this doesn't seem to work: kernel void binning_compute_function( device MyArgument *arg1 [[ buffer(0)]], constant float *ranarr [[ buffer(1) ]], device volatile atomic_int *flagArr [[ buffer(2) ]], device int *bins [[buffer(3)]], uint index [[ thread_position_in_grid ]]) { int expected=0; int ibin = (ranarr[index] * arg1->nbins); for (int i = 0; i < 100000000; i++) { // Lock expected = 0; bool test = !atomic_compare_exchange_weak_explicit(&flagArr[ibin],&expected,1,memory_order_relaxed,memory_order_relaxed); if (test) { bins[ibin] += 1; atomic_store_explicit(&flagArr[ibin], 0, memory_order_relaxed); break; } } } Any other suggestions? The alternative is to use the CPU for this, but seems a shame to miss out on the proc
3
0
1.3k
Jul ’22
Mouse driver locks up MacOS 13.7.6
Every week or so, mouse driver locks up. The LED laser goes out and none of the buttons operate. It's a generic 7 button USB mouse with my USB keyboard still active. I do not know what precipitates the lockup and a system diagnostic request (Sft-Alt-Ctl-Cmd .) does not seem to yield anything useful. > ps -ef|grep -i mouse 501 579 1 0 Mon01PM ?? 0:04.42 /System/Library/ExtensionKit/Extensions/MouseExtension.appex/Contents/MacOS/MouseExtension code-block so the mouse extension was running at the time. With a sudo kill -HUP 579 it did not restart. Also, switching to a different mouse did no good. The mouse driver was behaving like it was deadlocked and I didn't know the correct incantation for restarting it. I power cycle reset the box. SO: you have a mouse driver problem it cannot be just me It behaves like a deadlock, but not knowing how to get a mouse driver dump, I cannot tell what lock(s) its waiting for.
4
0
411
Aug ’25
Siri can’t place calls while device is locked
Hello, I’m developing a third-party VoIP app called Heyno and trying to support Siri-initiated calls so they behave like WhatsApp / FaceTime, especially from the lock screen. Target behavior From the locked device, the user says: “Hey Siri, call using Heyno” Expected result: • System CallKit audio-call UI appears. • No “continue in ” sheet, no forced unlock or foregrounding. • Our app handles the VoIP leg in the background via CXProviderDelegate. WhatsApp already does this with: “Hey Siri, call on WhatsApp” I’m trying to reproduce that behavior for Heyno using public APIs. I have followed the SiriKit + CallKit VoIP docs but cannot get a clean Siri → CallKit → app flow from the lock screen without either: Being forced into .continueInApp (unlock + foreground), or Hitting CallKit transaction errors when starting the call from the app in response to the intent. Current implementation Intents extension (INStartCallIntentHandling) • resolveContacts(for:with:) normalizes to E.164 and re
0
0
692
Nov ’25
How does apple news widget rank stories on lock screen?
We are a news agency in the Philippines, we want our news to also show on the widget notification on lock screen. We have an IOS app. We are wondering what are the criterias or process in order our stories to show?
Replies
0
Boosts
0
Views
666
Activity
Aug ’17
What is the icon size for lock screen media player?
My app uses HTML audio to play a live stream onto the iPhone lock screen. However, my app's icon (which is shown instead of album art) is shown under-size and has a grey box surrounding it, as if to suggest the canvas for the icon is larger than what the app's icon is providing.Does anybody know the required icon size for iOS 11 to fill this media player space?
Replies
0
Boosts
0
Views
714
Activity
Oct ’17
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
60
Activity
Apr ’26
Main thread locks during debugging
One of our apps does most of its work in an NSOperation subclass, and most of the work involves sending hundreds of AppleScripts to InDesign. We only send them on the main thread via:dispatch_sync(dispatch_get_main_queue(), ^{ [self _runAppleScriptWithDict:infoDict];});Since upgrading from an old MacBook Pro running 10.10.x and whatever Xcode it could handle to a fairly new one running 10.13..6 and Xcode 10.1, I've been seeing a lot of problems when debugging, stopping at breakpoints, then either stepping or continuing when the next line involves sending an AppleScript on the main thread. The main thread looks like:#00x00007fff54fefaee in __psynch_rw_wrlock ()#10x0000000100e109a9 in _pthread_rwlock_lock_wait ()#20x0000000100e108f0 in _pthread_rwlock_lock_slow ()#30x00000001005ff39d in enter_stack_in_backtrace_uniquing_table ()#40x00000001005fb92e in gcd_queue_item_enqueue_hook ()#50x0000000100dbe085 in _dispatch_introspection_queue_item_enqueue_hook ()#60x0000000100da5794 in _dispatch_root_queue_push_override
Replies
6
Boosts
0
Views
7.6k
Activity
Jan ’19
Lock Screen Notifications - Swipe to open removed?
Is the change to notifications on lock screen intentional? I can no longer swipe a notification to go directly to that app. For example, received a iMessage, now I can only use 3D Touch to open the popup method, or I have to unlock and go to message and open the message. iOS 10 you could swipe the notifcation and go directly to the message. Same applies for other apps - yelp, messenger, facebook, twitter, etc.
Replies
4
Boosts
0
Views
5.5k
Activity
Jun ’17
iOS 11 lock screen appears randomly on iPad
I have 39 iPads Air (WIFI) iOS 11.2.6 was reinstalling using iTunes.App on guitded access, display auto-lock - never, do not disturd - on, notifications - neverSometimes the screen is blocked randomly on one of the iPadon iOS 10 there was no problem.this happens after receiving a message from apple find out what's new in iOS 11https://drive.google.com/file/d/1HWJ8oqFH-tLGQdJUcyrDn03oUdT2X8oi/view?usp=sharing iPad logs. screen lock 27.03.2018 at 13:05
Replies
1
Boosts
0
Views
879
Activity
Mar ’18
Wish List: Auto LOCK macOS using Watch
macOS Sierra allows to be unlocked using an Apple Watch, but, as long as I know, it isn't locked when the watch moves away. Is there a way to enable such functionality? Or, how could I suggest it?
Replies
1
Boosts
0
Views
353
Activity
Sep ’16
How to disable/hide Audio Controls on lock screen from WkWebView
Hi, I am trying to remove the audio controls for my app on the lock screen. Since I use WKWebView, there are 3 audio tags in my html and I play and pause em via JS. However, if I do not play any sound since app launch, there are no audio controls on the lock screen. But if I play one of those 3 files (they are even less then 3 Sec sound effects e.g. for buttons) the audio controls appears on lock screen. Note even when the sounds on pause() or not playing they were listed on the lock screen. What I have tried so far without success MPNowPlayingInfoCenter.default().nowPlayingInfo = [:] and ``try audioSession.setCategory(.playback, mode: .default, options: []) try audioSession.setActive(false, options: .notifyOthersOnDeactivation)`` and UIApplication.shared.endReceivingRemoteControlEvents() Another problem is that the app scales with iOS system settings display zoom. Is there a way to deny it? It is latest Xcode verion 16.3 and iOS 18. I have no background mode in my Capabili
Replies
2
Boosts
0
Views
288
Activity
May ’25
how to unlock iCloud/bypass activation code on locked iPhone
Please Help, I was updating to 10.0.2, on my iPhone 6 S Plus on Friday after rebooting. My phone will not go passed the Activation code. I keep getting a locked out error, how do I unlock or bypass iCloud activation lock on iPhone 6s plus. I am the original owner of this phone and for some reason it thinks my iCloud action starts with a y......@icloud.com which it does not. All other Apple equipment that I own I have had no issues with this update. I gone to the carrier Verizon and to Best Buy and both have told to contactApple support.
Replies
1
Boosts
0
Views
6.5k
Activity
Oct ’16
Any way to implement a lock in Metal Shader Language?
HI - I'm trying to implement a Barnes-Hut N-Body simulation code in Metal. The code requires construction of a tree. The CUDA implementation uses locks to allow insertion of new nodes into the tree. I've tried using an array of atomic ints in a test case, but this doesn't seem to work: kernel void binning_compute_function( device MyArgument *arg1 [[ buffer(0)]], constant float *ranarr [[ buffer(1) ]], device volatile atomic_int *flagArr [[ buffer(2) ]], device int *bins [[buffer(3)]], uint index [[ thread_position_in_grid ]]) { int expected=0; int ibin = (ranarr[index] * arg1->nbins); for (int i = 0; i < 100000000; i++) { // Lock expected = 0; bool test = !atomic_compare_exchange_weak_explicit(&flagArr[ibin],&expected,1,memory_order_relaxed,memory_order_relaxed); if (test) { bins[ibin] += 1; atomic_store_explicit(&flagArr[ibin], 0, memory_order_relaxed); break; } } } Any other suggestions? The alternative is to use the CPU for this, but seems a shame to miss out on the proc
Replies
3
Boosts
0
Views
1.3k
Activity
Jul ’22
Mouse driver locks up MacOS 13.7.6
Every week or so, mouse driver locks up. The LED laser goes out and none of the buttons operate. It's a generic 7 button USB mouse with my USB keyboard still active. I do not know what precipitates the lockup and a system diagnostic request (Sft-Alt-Ctl-Cmd .) does not seem to yield anything useful. > ps -ef|grep -i mouse 501 579 1 0 Mon01PM ?? 0:04.42 /System/Library/ExtensionKit/Extensions/MouseExtension.appex/Contents/MacOS/MouseExtension code-block so the mouse extension was running at the time. With a sudo kill -HUP 579 it did not restart. Also, switching to a different mouse did no good. The mouse driver was behaving like it was deadlocked and I didn't know the correct incantation for restarting it. I power cycle reset the box. SO: you have a mouse driver problem it cannot be just me It behaves like a deadlock, but not knowing how to get a mouse driver dump, I cannot tell what lock(s) its waiting for.
Replies
4
Boosts
0
Views
411
Activity
Aug ’25
iOS 16 Home/Lock Screens disables wallpaper choice
Tried the Home/Lock Screen option in iOS 16; decided it is not for me but now cannot simply choose a new Home and Lock from my photos (or whatever). Anyone know how to restore without a complete iOS reinstall? Thanks
Replies
2
Boosts
0
Views
727
Activity
Jun ’22
Siri can’t place calls while device is locked
Hello, I’m developing a third-party VoIP app called Heyno and trying to support Siri-initiated calls so they behave like WhatsApp / FaceTime, especially from the lock screen. Target behavior From the locked device, the user says: “Hey Siri, call using Heyno” Expected result: • System CallKit audio-call UI appears. • No “continue in ” sheet, no forced unlock or foregrounding. • Our app handles the VoIP leg in the background via CXProviderDelegate. WhatsApp already does this with: “Hey Siri, call on WhatsApp” I’m trying to reproduce that behavior for Heyno using public APIs. I have followed the SiriKit + CallKit VoIP docs but cannot get a clean Siri → CallKit → app flow from the lock screen without either: Being forced into .continueInApp (unlock + foreground), or Hitting CallKit transaction errors when starting the call from the app in response to the intent. Current implementation Intents extension (INStartCallIntentHandling) • resolveContacts(for:with:) normalizes to E.164 and re
Replies
0
Boosts
0
Views
692
Activity
Nov ’25
need file/record locking for master database
I'm establishing a Muti-user database that will be updated by lan based stations as well as many in the field. That means at the least file & record locking. What's the best solution to have this solution through Macs and iPhones ? Is this going to take a Linux server with an SQL database or is there an apple solution ?
Replies
1
Boosts
0
Views
644
Activity
Mar ’21