Questions tagged [watchos-3]

watchOS 3 is the third version of Apple's operating system for Apple Watch and is the successor to watchOS. It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 13, 2016, and will be released this fall. Use this tag only for questions related to watchOS 3.

The watchOS 3.1 is available.

The watchOS 3.1.1 Developer Beta 2 is available for testing to developers here.

Main features include:

  • Performance & Navigation
  • Watch Face
  • Activity Sharing
  • Wheelchair Use
  • Workout
  • Messages
  • new Breathe App
  • new Home app

More information is available on Apple's website.

206 questions
0
votes
0 answers

Watchkit App creating a file in app group and I want to have access in the iOS application

I want to have a access to this file in app group in both application(ios and watchos) I am using the following code to have an access. In watchos where i create the container its working fine but the same code in iOS giving me Errors let…
Osman
  • 1,496
  • 18
  • 22
0
votes
1 answer

I am searchig in wachtos3 a replacement for the inputNode to safe Audiobuffer into a file

I tried to create a own class but the Classes for the input node aren't available in watchos3. I tried with AVAudioPlayerNode but it haves error. have somebody any suggestion how to record the microphone Buffer in watchos3?
Osman
  • 1,496
  • 18
  • 22
0
votes
2 answers

Want to create a custom class XY that inherits from a Class and a Protocol

I want to create the AVAudioInputNode in watchOS 3. If I click on JumpToDefinition for AVAudioInputNode, I see that: open class AVAudioInputNode : AVAudioIONode, AVAudioMixing { } Why I can't create a custom class with the same style ? My class…
Osman
  • 1,496
  • 18
  • 22
0
votes
1 answer

WatchOS background image stretching under table

I a table view in my watch app which I am trying to put an image behind. This is what it looks like in the storyboard: and this is what I want, but when I run it on the simulator with a number more rows it seems to stretch the background image…
0
votes
1 answer

How to open a specific view controller from a custom notification action in WatchOS 3

I'm developing a WatchOS3 application in which the user receives local notifications with custom actions. The user has 2 custom actions that he can call on the notification, option 1 and option 2. After the user taps on either of the options, the…
0
votes
1 answer

Can I lock the Apple Watch programatically with WatchKit

I am working on an app to be used in the sea. I'd like to offer the user a button to lock the watch, exactly the same way you can from the native Workout app, but I can't find anything in the API which allows this. Is it really not possible to lock…
lewis
  • 2,936
  • 2
  • 37
  • 72
0
votes
1 answer

Can watchOS notification show Custom embedded fonts

In watchOS, if a custom font is embedded in the app, that font works definitely on WkInterfaceLabel, WKInterfaceButton, etc... . Does that font works on watchOS's notification views ? If not, is there any possible way like we can install font…
0
votes
2 answers

How to force a call to getPlaceholderTemplate on Apple Watch simulator to update complications preview

I made the mistake of installing the app on the simulator without having set up all my complication templates. As the docs state, getPlaceholderTemplate gets called one time and then cached. So now that I have all my Watch complication templates…
K_C
  • 393
  • 1
  • 7
  • 20
0
votes
1 answer

Why PauseWorkoutSession of Health store not pausing the Session?

I am creating an iWatch app which reads HeartRate data which I then use to plot some graphs. There are 2 buttons in the app, one to pause the workout session and other to resume the workout session. On click of Pause button, I am calling…
Deep Arora
  • 1,900
  • 2
  • 24
  • 40
0
votes
1 answer

How to use same Class"XY" for both ios and watchos3 with swif3

I tried to use a Custom Framework but it is not importing in the WatchApp Extension ->interfacecontroller. In the ios App the Import statment work correct. my question is : how to use same classes in both targets(ios and watchos)
Osman
  • 1,496
  • 18
  • 22
0
votes
1 answer

How to render a scene with WKInterfaceSCNScene on watchOS 3?

I've tried adding a ScenKit Scene to a WKInterfaceController, created the IBOutlet WKInterfaceSCNScene* sceneInterface; (as documented) and seated the scene property into interface builder to a SceneKit scene just created but I don't see the scene…
WonderBoy
  • 145
  • 2
  • 5
0
votes
0 answers

Missing sound on Apple Watch after resume from dock

I am using the following sounds (all 32K AAC as mentioned in Apple document but I use mono instead of stereo: https://developer.apple.com/library/content/documentation/General/Conceptual/WatchKitProgrammingGuide/AudioandVideo.html) for my watchOS 3…
Lim Thye Chean
  • 8,704
  • 9
  • 49
  • 88
0
votes
2 answers

Error while Recording Audio on watch-os-3

I wanted to record my Audio on Applewatch and send to my iPhone. I created a URL to store the file and everytime I try this on my simulator it is working fine but on real device nothing happes with this error Error: Error…
Osman
  • 1,496
  • 18
  • 22
0
votes
1 answer

Is it possible to use watchOS 3 vertical detail paging with a page-based interface?

I am looking to update my watchOS app with the latest watchOS 3 improvements, but I am running into an issue getting the new WKInterfaceTable vertical paging to work. It seems that vertical detail paging requires you to use the hierarchical…
RealCasually
  • 3,593
  • 3
  • 27
  • 34
0
votes
1 answer

how can I display labels on apple watch?

Xcode 8.0 I try to code my very first app for watchOS. I simply want to show a note when pressing the button. Here is what I've got so far: import WatchKit import Foundation class InterfaceController: WKInterfaceController { @IBOutlet var…
1 2 3
13
14