Search results for

“Account Locked”

36,223 results found

Post

Replies

Boosts

Views

Activity

App terminate after iPhone is locked
Hi,My App works fine but is still in development....First SignON and scroll over my Tableview....make an Order and wait for Response (iPad App)...now after the order is submit my timer is still working check every 10 sec for response...now push my App in Background and foreground the timer ann App is still alive...but is automaticly settings the iPhone screen dimm the Screen and after a while my iPhone is locked,after unlock my iPhone and start my App ...my App is in login Screen...so i have set in my scheme Launch due to background fetch event! but it's not working...Why my App is terminated an not on my last screen after locked ?there are only simple URLConnection call on my timer....Thanks
2
0
1.3k
Aug ’16
Linking your iOS app to open Lock Screen Widget
Apple offers widgets on the lock screen from iOS 16. https://developer.apple.com/documentation/widgetkit/creating-lock-screen-widgets-and-watch-complications Currently to access these widgets on the lock screen user has to: 1.Lock their phone 2.Long press on lock screen 3.Hit Customize Button 4.Select from widgets option (Circular/Inline/Rectangular) to add / remove widget Is there anyway that can we link out of the app directly to the lock screen widget selector? Currently we have a way to deeplink the user from widget into the app, but is there a way on how to take the user from the app to the lock screen widget directly?
0
0
651
Dec ’22
Zoomed image locks app
I'm currently beta testing (using TestFlight) an app created using jQuery Mobile and Adobe Cordova. The resulting app works well except for one aspect. I've placed images inside collapsible sets of text. If a user zooms in on the image, the app locks and the user cannot get back to the text surrounding the image. How do I go about disabling the ability to zoom images in this app? Thanks for any help provided.
0
0
270
Feb ’21
Media controls on lock screen (iPad)
So I don't understand why the media controller works fine on iPhone iOS13 yet as soon as i run the same code on iPad the media controllers do not show up on the lock screen of the iPad.I hace search github to find an iPad radio station app that does show now playing information on iPad lock screens however it seems to be that there is none.I have made my code open source because I need you help to solve this issue. Apple wont approve of our app until we fix this bug - yet it's an Apple system bug i believe not a code issue bug.https://github.com/redimongo/DRN1https://stackoverflow.com/questions/59436760/ipad-media-controls/59462880#59462880
0
0
1.7k
Dec ’19
List in swiftui locking up
If I run this code below , it will goto the detail view the first time, but will not goto the detail view again. It locks up the program with no errors.If I add a second item in the first List (0..<2) it runs fine. Any ideas ?Xcode 11.3import SwiftUIstruct ContentView: View { var body: some View { NavigationView { List { NavigationLink(destination: DetailView() .navigationBarTitle(Test Detail)){ Text(Goto Detail).foregroundColor(.blue) } .navigationBarTitle(Welcome) } } }}struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() }}struct DetailView: View { var body: some View { List(0 ..< 5) { item in Text(hello).foregroundColor(.blue) } }}
2
0
1.1k
Jan ’20
UNNotificationContentExtension does not handle action from lock screen
I am having issues with the UNNotificationContentExtension and actions on the lock screen.If the action requires authentication UIMutableUserNotificationAction.authenticationRequired and the notification is displayed on the lock screen using a UNNotificationContentExtension, the selected action is not sent to my UIApplicationDelegate to be handled.It only occurs in the specific case above.If the action does not require authentication, it works fine.If the notification is displayed on an unlocked phone, it works fine.If the notification is displayed on the lock screen without using the UNNotificationContentExtension, it works fine.It seems like the phone is treating the authentication for the action like a normal unlock, instead of an authentication for an action.For notifications that don't use UNNotificationContentExtension -- if I enter my passcode or fingerprint to authenticate an action the phone remains on the lock screen. But, if I use the UNNotificationContentExtensi
1
0
945
Sep ’16
Preventing auto-lock while recording audio
I have a simple app that is capturing audio via the WKInterfaceController audio recording method. Everything works well, except for the fact that I can never capture a recording longer than about 20 sec because the Apple Watch screen locks. I have set the max duration option to 5 min, but this doesn't seem to have any effect on this aspect of things. Has anyone managed to either get the watch to stay awake in this case, or is there a wy to get the audio recording to continue in the background, even after screen lock?Thanks!
1
0
1.9k
Sep ’15
External Accessory and Password Locked screen
Hello,It's unclear on documentation about the case of password locked screen. I plug my accessory and I can see the transfer activity from accessory side. But after unlocking the screen, my app does not launch automatically (in compare with unlocked screen). Is it a known limitation?Regards,Mikhail Kolesov
2
0
813
Jan ’18
iOS map navigation ability on lock sceen
Is there any API for navigation on lock screen like the Apple maps app? If not, please provide all the APIs that related to custom lock screen.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
871
Activity
Jul ’15
App terminate after iPhone is locked
Hi,My App works fine but is still in development....First SignON and scroll over my Tableview....make an Order and wait for Response (iPad App)...now after the order is submit my timer is still working check every 10 sec for response...now push my App in Background and foreground the timer ann App is still alive...but is automaticly settings the iPhone screen dimm the Screen and after a while my iPhone is locked,after unlock my iPhone and start my App ...my App is in login Screen...so i have set in my scheme Launch due to background fetch event! but it's not working...Why my App is terminated an not on my last screen after locked ?there are only simple URLConnection call on my timer....Thanks
Replies
2
Boosts
0
Views
1.3k
Activity
Aug ’16
Linking your iOS app to open Lock Screen Widget
Apple offers widgets on the lock screen from iOS 16. https://developer.apple.com/documentation/widgetkit/creating-lock-screen-widgets-and-watch-complications Currently to access these widgets on the lock screen user has to: 1.Lock their phone 2.Long press on lock screen 3.Hit Customize Button 4.Select from widgets option (Circular/Inline/Rectangular) to add / remove widget Is there anyway that can we link out of the app directly to the lock screen widget selector? Currently we have a way to deeplink the user from widget into the app, but is there a way on how to take the user from the app to the lock screen widget directly?
Replies
0
Boosts
0
Views
651
Activity
Dec ’22
Zoomed image locks app
I'm currently beta testing (using TestFlight) an app created using jQuery Mobile and Adobe Cordova. The resulting app works well except for one aspect. I've placed images inside collapsible sets of text. If a user zooms in on the image, the app locks and the user cannot get back to the text surrounding the image. How do I go about disabling the ability to zoom images in this app? Thanks for any help provided.
Replies
0
Boosts
0
Views
270
Activity
Feb ’21
Reply to Urgent: Developer Account Locked After Payment – No Access or Refund
I've had the same experience as you. Account was created last week, locked this week. I called the phone number on the Developer Program invoice and they recommended I submit a support request on developer.apple.com/contact/apple-id which I have done. No response yet.
Replies
Boosts
Views
Activity
Apr ’25
Media controls on lock screen (iPad)
So I don't understand why the media controller works fine on iPhone iOS13 yet as soon as i run the same code on iPad the media controllers do not show up on the lock screen of the iPad.I hace search github to find an iPad radio station app that does show now playing information on iPad lock screens however it seems to be that there is none.I have made my code open source because I need you help to solve this issue. Apple wont approve of our app until we fix this bug - yet it's an Apple system bug i believe not a code issue bug.https://github.com/redimongo/DRN1https://stackoverflow.com/questions/59436760/ipad-media-controls/59462880#59462880
Replies
0
Boosts
0
Views
1.7k
Activity
Dec ’19
Detect device lock on apple watch
Hi anybody figured out how to detect if the device gets locked ? The purpose would be to remove sensitive stuff on events where the user removes the watch from the wrist.
Replies
1
Boosts
0
Views
492
Activity
Jul ’15
Is Testflight region-locked as per App?
Can I get testers outside of an iphone App's region (when on the app store) to test an app via Test flight, or will they be denied by the same region lock as when released?
Replies
1
Boosts
0
Views
4.4k
Activity
Jun ’21
Full app UI on lock screen
not sure where to post this hence adding here. how to run in this full screen mode even when the screen is locked. As far as I looked, it’s only live activities that the developers are made available with. Is there a way to create our own UI on lockscreen, given a similar usecase exists?
Replies
2
Boosts
0
Views
592
Activity
Jan ’25
List in swiftui locking up
If I run this code below , it will goto the detail view the first time, but will not goto the detail view again. It locks up the program with no errors.If I add a second item in the first List (0..<2) it runs fine. Any ideas ?Xcode 11.3import SwiftUIstruct ContentView: View { var body: some View { NavigationView { List { NavigationLink(destination: DetailView() .navigationBarTitle(Test Detail)){ Text(Goto Detail).foregroundColor(.blue) } .navigationBarTitle(Welcome) } } }}struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() }}struct DetailView: View { var body: some View { List(0 ..< 5) { item in Text(hello).foregroundColor(.blue) } }}
Replies
2
Boosts
0
Views
1.1k
Activity
Jan ’20
Vertical scrolling with a UICollectionView not locked
I'm building a Messages extension that shows a vertically scrolling UICollectionView. I've noticed that when the extension first loads, scrolling vertically is not locked and the slight movement horizontally moves the entire extension away. Has anyone else seen this? I've filed a bug and am waiting to hear back.
Replies
0
Boosts
0
Views
354
Activity
Jun ’16
UNNotificationContentExtension does not handle action from lock screen
I am having issues with the UNNotificationContentExtension and actions on the lock screen.If the action requires authentication UIMutableUserNotificationAction.authenticationRequired and the notification is displayed on the lock screen using a UNNotificationContentExtension, the selected action is not sent to my UIApplicationDelegate to be handled.It only occurs in the specific case above.If the action does not require authentication, it works fine.If the notification is displayed on an unlocked phone, it works fine.If the notification is displayed on the lock screen without using the UNNotificationContentExtension, it works fine.It seems like the phone is treating the authentication for the action like a normal unlock, instead of an authentication for an action.For notifications that don't use UNNotificationContentExtension -- if I enter my passcode or fingerprint to authenticate an action the phone remains on the lock screen. But, if I use the UNNotificationContentExtensi
Replies
1
Boosts
0
Views
945
Activity
Sep ’16
Locked phone
It says im needed to connect to itunes but doesnt give info of what i should do
Replies
0
Boosts
0
Views
266
Activity
Dec ’20
Preventing auto-lock while recording audio
I have a simple app that is capturing audio via the WKInterfaceController audio recording method. Everything works well, except for the fact that I can never capture a recording longer than about 20 sec because the Apple Watch screen locks. I have set the max duration option to 5 min, but this doesn't seem to have any effect on this aspect of things. Has anyone managed to either get the watch to stay awake in this case, or is there a wy to get the audio recording to continue in the background, even after screen lock?Thanks!
Replies
1
Boosts
0
Views
1.9k
Activity
Sep ’15
External Accessory and Password Locked screen
Hello,It's unclear on documentation about the case of password locked screen. I plug my accessory and I can see the transfer activity from accessory side. But after unlocking the screen, my app does not launch automatically (in compare with unlocked screen). Is it a known limitation?Regards,Mikhail Kolesov
Replies
2
Boosts
0
Views
813
Activity
Jan ’18