Questions tagged [watchos]

watchOS is Apple's operating system for Apple Watches. Optimized for touch-based interfaces, this OS has a lot in common with iOS, which is the operating system for Apple's mobile devices, but shouldn't be confused with it.

watchOS is Apple's operating system for Apple Watches. Optimized for touch-based interfaces, this OS has a lot in common with , but shouldn't be confused with it.

Currently, the Apple Watch is the only device that runs watchOS. Its API is called WatchKit (see ).

Helpful links

1236 questions
0
votes
1 answer

Is it possible to combine 2 images together into one on watchOS?

I am upgrading my watch app from the first version of watchOS. In my first version I was placing UIImageViews on top of each other and then rendering them with UIImagePNGRepresentation() and then converting it to NSData and transferring it across to…
Mike S
  • 4,092
  • 5
  • 35
  • 68
0
votes
1 answer

Move to different screens at WatchOS

I´m trying to navigate to different screens with WatchOS but when i choose this action in a button: [self presentControllerWithName:@"Screen2" context:contextDic]; The Screen2 open correctly but inside this screen i have a button with this…
user3777879
  • 41
  • 1
  • 10
0
votes
1 answer

pickerview missing in xcode 6.4?

I'm trying to create a apple watch app, but i'm using xcode 6.4 and I need the pickerview control but that control is missing. ps. In xcode 7 beta that control exists.
rim-tej
  • 11
  • 2
0
votes
2 answers

'openParentApplication(_:reply:)' is unavailable error

I have just updated my project to Swift 2.0 after updating to Xcode 7, and I have ran into an issue with my watch extension. I want to have a watchOS 1 target, along with the watchOS 2 target, so I have created a second target for the watchOS 2 app.…
user3746428
  • 11,047
  • 20
  • 81
  • 137
0
votes
1 answer

not able to send data from watch app to iphone when i used app groups in watch os1

I have used appgroup for sending data between a watch app and an iphone app but I am not able send data back from the watchapp to the iphone app. This problem resides in the watch OS. My code is: @implementation InterfaceController @synthesize…
0
votes
2 answers

How can I get the root View from a WKInterfaceController, without an outlet

I want to get a hold of the root view of a WKInterfaceController, without having defined an outlet for it. I want this for a development tool I'm trying to build. Its not code I mean to run in production, so private APIs are welcome here.
gardenofwine
  • 1,344
  • 2
  • 15
  • 24
0
votes
1 answer

Resize an image in Swift

I am currently following the courses: "The Complete Apple Watch Development course - 14 Build apps" by Yohann Taieb on Stackskills, but I've hit a road block. Whenever I insert an image in my storyboard, it is resized but when I run the app, the…
0
votes
2 answers

cannot invoke 'setScore' with an argument list of type '(Int)'

I'm quite new to working with Swift and have a problem: I have two classes in my WatchKit App. Class 1: func setScore(inputScore: Int) { scoreLabel.setText(String(inputScore)) } ... and Class 2 should have access to this func: var countNumber =…
0
votes
1 answer

Can we use Core Location in Apple Watch?

I know that we can use the CoreLocation API in the AppleWatchKit code itself. But still, from the documentation, I read that the fetching of locations should be done only in the parent app and not in the watch app. Which is the standard way for…
0
votes
1 answer

WatchKit app launch another Watchkit application pp

Is it possible to Watchkit app to launch another WatchApp such a Call app in the Watch. Actually I developing a app it need to open the call app in watch
Chamath Jeevan
  • 5,072
  • 1
  • 24
  • 27
0
votes
1 answer

How to get current language of Siri in Apple Watch

Please help me to get the current language of Siri in watchOS. Thanks!
0
votes
1 answer

Apple Watch string is getting truncated

In my app there is a big string of about 40 lines and I'm trying to put it on the Apple Watch. When I open it only 10 lines are being displayed and rest of the sting is getting truncated with dots. How can I show the entire string on the Apple Watch…
Murali
  • 148
  • 1
  • 9
0
votes
1 answer

Is it possible to run WatchKit app on Actual Apple Watch device?

I am developing a WatchKit App in Xcode 6.4, and I have access to a real Apple Watch. It's possible to debug the WatchKit App on it? Thank You
Chamath Jeevan
  • 5,072
  • 1
  • 24
  • 27
0
votes
1 answer

WatchKit : connect 2 sliders to 1 label

tenSlider is going to change the currentBPM value by 10 and pass its result to bpmLabel. This works fine. However, I also want the onesSlider update that same label, but instead by +1 or -1. The problem is that it doesn't check the current value…
Tommy J
  • 3
  • 3
0
votes
2 answers

Can I use ClockKit with a custom background image and complications at the same time?

I would like to use a watch face with a custom image (as shown during the WWCD'15 keynote) and, at the same time, show complications. How can I do this? I have studied the ClockKit documentation but could not find a way to do this. Update: It seems…
John
  • 8,468
  • 5
  • 36
  • 61