Questions tagged [watchos-6]

Only use this tag for questions that specifically apply to the Apple watchOS version 6. Use the [watch-os] tag for questions related to watchOS generally. Hardware questions generally belonging to the Apple Watch should be in the Ask Different community.

watchOS version 6 is an operating system for SmartWatches produced by Apple.

Read more about it on the developer page

84 questions
1
vote
0 answers

WatchOS 6 TTS bug ? AXSpeechManager isSpeaking crash

Here is the bug report. I think it's a bug of watchOS 6 something related to apple Text to Speech service. When i not use tts, it's go away. Incident Identifier: 3C86B3F2-0565-464C-921C-A0ECB63237EB CrashReporter Key: …
Haozes
  • 352
  • 2
  • 12
1
vote
0 answers

How to send push notification directly in indivisual watch app (using watchOS 6 ) without iPhone?

I am developing independent watch app using watchOS 6 and I want to use push notification in this app. So, Please guide me what is the process of integrate APNS in watch OS 6 without using iPhone. and registerForRemoteNotifications() method is not…
Ravikant
  • 97
  • 4
  • 15
1
vote
2 answers

Background refresh task not triggered in watchos 6 independent app

I'm developing an independent watch app on XCode 11.0 beta 5. Everything works alright except background refresh. I'm using the following code to schedule the background refresh task when I open the app: let fireDate = Date(timeIntervalSinceNow:…
Jelly
  • 4,522
  • 6
  • 26
  • 42
1
vote
2 answers

In watchOS, is it possible to display a view without a status bar button that leads to the root view?

I would like to have a similar navigation structure to the built-in Workout app in watchOS. I have a list of tennis rules formats, analogous to workout types in the Workout app. Tapping one starts a match in a new interface controller. In WatchKit,…
Curiosity
  • 544
  • 1
  • 15
  • 29
0
votes
1 answer

SwiftUI WatchOS-Only Run Error due to HealthKit

I am getting this error only when Health Kit is enabled and I am running on a real device. 2023-01-30 19:40:27.907022-0700 Watch App[381:50291] [SceneConfiguration] Info.plist contained no UIScene configuration dictionary (looking for configuration…
Conmans
  • 11
  • 1
0
votes
0 answers

SwiftUI backwards compatibility with WatchOS 6: how to write body?

If I create a brand new xCode project with a WatchKit extension this is what I get created by default in the main app file: struct WorkoutApp: App { @available(watchOSApplicationExtension 7.0, *) var body: some Scene { WindowGroup { …
Ramy Al Zuhouri
  • 21,580
  • 26
  • 105
  • 187
0
votes
1 answer

UINavigationController in Watchkit

Is there a way to control the navigation bar in WatchOS similar to how we can control it in iOS using UINavigationController? What I am trying to do is hide the navigation bar for certain WKInterfaceControllers and show it for others. What I am able…
0
votes
0 answers

How can I implement a simple long press gesture using SwiftUI on an Apple Watch?

I've been playing around a bit and while this code works in iOs it won't work on WatchOS import SwiftUI struct ContentView: View { var body: some View { Text("Hello, World!") .onTapGesture { print("tapped!") …
yangnom
  • 187
  • 1
  • 10
0
votes
0 answers

Update Firebase from watchOs 6 independent application

I went through this link https://firebase.google.com/support/release-notes/ios and I only came across the latest added feature to send Push Notifications using the new FCM. I also want to update the database and change the values of fields in an…
0
votes
1 answer

OpenWeatherMap API does not find all cities

I was following this tutorial (https://www.youtube.com/watch?v=QMR6N6Vs_x0&feature=emb_err_woyt) and used the code for an Apple Watch Application. So everything works almost fine. The strange thing is that not all the cities that I'm typing are…
Moi
  • 43
  • 8
0
votes
1 answer

WatchOS 6 notifications not arriving

I'm wondering if there's a known bug in WatchOS 6.1.1 regarding local notifications triggered from the watch? I have an app that I developed about two years ago on watchOS 4. It would send local notifications from the watch during background…
rharding
  • 551
  • 1
  • 3
  • 14
0
votes
1 answer

How to fix missing interface controller inside Page Controller in Apple Watch?

What I found is ? Try to scroll horizontally between the interface controllers inside a root page controller. Randomly after a while (30-1 min). You will find that one of the interface controllers gets missing. Blank view is shown, UI disappears…
0
votes
0 answers

WKApplicationRefreshBackgroundTask is missing userInfo passed via scheduleBackgroundRefreshWithPreferredDate

I'm pass the userInfo NSDictionary thusly: [[WKExtension sharedExtension] scheduleBackgroundRefreshWithPreferredDate:[NSDate dateWithTimeIntervalSinceNow:10] userInfo:[NSDictionary dictionaryWithObjectsAndKeys:@"timer", @"reason", nil] …
pstoppani
  • 2,531
  • 1
  • 20
  • 20
0
votes
1 answer

Incorrect scroll behavior when using a list in WatchOS

Behavior #1: I'm trying to have text before I have a list of elements and have everything scroll cohesively. I've tried changing the code in many aspects and end up getting different incorrect behavior. Here is the code for behavior_1: struct Thing:…
39fredy
  • 1,923
  • 2
  • 21
  • 40
0
votes
2 answers

Populating the "Now Playing" screen on watchOS 6

I'm trying to display the currently playing audio from my app in the watches Now Playing app. I'm streaming the audio using the AVPlayer and set the AVAudioSession category and activated the session. I've also tried to use the MPNowPlayingInfoCenter…
leoMehlig
  • 300
  • 2
  • 10