Search results for

Account Locked

31,833 results found

Post

Replies

Boosts

Views

Activity

iOS 13.1.2 Carplay Complete lock up
Audi Q5 2018 Connected with cableCan connect to phone and make a phone call. Once Phone is connected and call is in play CarPlay control stops. Can not end Phone Call from Carplay. Have to revert to Phone itself. No up down controlls to access any Car Play features once lock up occurs.
1
0
834
Oct ’19
Lock screen media controls for MusicKit/ ApplicationMusicPlayer
Hi, when using ApplicationMusicPlayer from MusicKit my app automatically gets the media controls on the lock screen: Play/ Pause, Skip Buttons, Playback Position etc. I would like to customize these. Tried a bunch of things, e.g. using MPRemoteCommandCenter. So far I haven't had any success. Does anyone know how I can customize the media controls of ApplicationMusicPlayer. Thank you.
2
0
453
Aug ’25
Reply to No longer can load or test application on iPhone via XCode 11
Thanks for the reply Claude !After 3 hours of searching/reading I was able to find a Google posting which had the right answer for me:I solved my issue with these steps:Open keychain access.Right-click the 'login' keychain and request to Lock itRight-click the 'login' keychain and request to Unlock it (enter your PC account password)In XCode, clean the project by selecting Product/Clean Build Folder optionSelect your attached iPhone in Xcode and Build the projectEnter your PC account password everytime you are prompted (I was prompted 5 separate times)
Mar ’20
ios 11 app lock issue
Anyone else getting an error on ios 11 devices when trying to remove a single app mode payload when you have certain settings disabled in the restrictions payloadFor example:1. install restrictions payload with camera disabled, and single app mode locked to an app on the device2. remove the single app mode payload and resend the profile to the deviceThis will result in the following error: The payload contains a restriction that conflicts with an installed Single App Mode payloadWe have found you cannot remove a single app payload when the following restrictions are disabledAllow use of cameraAllow use of FaceTimeAllow use of iMessageAllow installing apps using Apple Configurator and iTunesAllow installing apps using app storeAllow Game CenterAllow iCloud document syncAllow pairing with Apple WatchAllow use of iTunes storeAllow use of PodcastsAllow use of the News appAllow use of the Safari browserThis is definitely not happening on older ios versionsThis seems like a bug to me unless anyone can tell
3
0
1.7k
Oct ’17
Updating Wallpaper and Lock-screen from an iOS APP
Hi Everyone,We are working on iOS APP using Swift API and this APP gets published only to internal AppStore.As part of this APP, is it possible to implement functionality to dynamically or based on user action, update iOS Device Wallpaper and/or Lock-screen image?Any pointer to specific documentation or example will be helpful.Regards,Kalyan
1
0
2.9k
Nov ’18
Getting Heart Rate Lock outside of a Workout
How can I get the watch to lock onto the heart rate before starting a workout, in the same way that precision start works on the Ultra? In the past it required a special permission and I requested this several times without hearing back. I assume this was because the permission was intended for other app types (meditation etc). However now that precision start is available in the native app it would be great to provide it in my workout app. I looked around for the permission form again but couldn't find it so I was wondering if anyone knows how to do this? Thanks.
0
0
1.1k
Oct ’22
iOS Background Bluetooth: BLE scanning when iPhone is locked
I am looking for someone from the team at Apple to help me with a bluetooth issue we are experiencing. I am part of a team that is building a product line with a bluetooth device that requires us to use background bluetooth scanning. The device sends BLE packets periodically and the phone receives these packets and sends the data to our DB. We were able to get background bluetooth packets receiving (although sporadically) on the phone. However we cannot receive any packets while the app is backgrounded and the phone is locked. So my question is two fold: This is more critical: Is there any way to allow scanning while the app is backgrounded and the phone is locked? This is secondary: Is there anyway to make background scanning more reliable/predictable so that we can get consistent readings in the background
7
0
15k
Jul ’20
Lock widget for pro-users
Hi, I have added widgets to my iOS app and I would like to make this feature only accessible to pro users that have made a non-consumable in-app purchase. Currently, I am doing the following: I store an isUnlocked property in the Keychain after the purchase is made I read data to be displayed in the widget and here I also query the Keychain and store whether the widget is unlocked I have no refresh policy, but only change the widget data on a significant time change a different view is displayed when the app is locked Some dummy code snippets: func getTimeline(in context: Context, completion: @escaping (Timeline) -> Void) { ttlet entry = readContents() ttlet timeline = Timeline(entries: [entry], policy: .never) ttcompletion(timeline) } struct WidgetEntryView: View { ttlet entry: Provider.Entry @Environment(.widgetFamily) var family @ViewBuilder var body: some View { switch family { case .systemSmall: if !entry.isUnlocked { LockedWidgetView() } else if let event = entry.event { SmallWidgetEventView
7
0
3.6k
Oct ’20
Subscription on different in-app account with the same account
A user has multiple in-app accounts and an Apple account. He purchase the subscription on one in-app account and then cancels it immediately, at which point the payment is deducted once and the subscription stays in effect. Then he logs into a second in-app account and initiates a subscription with the same Apple account, at this point can he get the subscription service on the second in-app account without paying for it? If so, how to deal with it?
1
0
490
Apr ’24
iOS 16 Lock Screen Widgets updating
Hello! I am trying to make my complication update info every second, so I could create a timer in it. I already found a solution that helps me to create a timer let components = DateComponents(second: 10) let futureDate = Calendar.current.date(byAdding: components, to: Date())! Text(futureDate, style: .timer) but I want to make a breath timer, so I need to change it to 5 sec timer and then again to 10 sec. Is there any solution that would allow me to update the info that shows in the new iOS 16 Lock Screen Widget in this way?
0
0
737
Jul ’22