Watchkit Extension – No matching provisioning profiles found

You need to create two new AppIDs in the Developer Portal with the correct bundle identifier for your Watchkit app and Watchkit extension. The bundle identifier has to extend the main apps identifier, so if your app is com.myapp it should be com.myapp.watchkitextension and com.myapp.watchkitapp You also need to create the related Provisioning Profiles for … Read more

WatchKit Extension bundle identifiers

You have to be careful when changing the bundle identifiers, and here’s how they should be set (you need to change each identifier in the Info.plist for the iPhone app, for the Watchkit Extension and for the Watchkit App): iPhone Application Info.plist: Set any bundle identifier as you like (the “Bundle identifier” property). Example: Bundle … Read more

WatchKit apps must have a deployment target equal to iOS 8.2 (was 8.3)?

Select your project settings and go to “TARGETS”. Click on your Watch Kit App, select Build Settings. For the key “iOS Deployment Target” you should find “iOS 8.3”. For some reason Xcode 6.3 Beta 4 wants to have this on “iOS 8.2” for “Debug” and “Release”. Now your project should build as expected. This is … Read more

How can I change image tintColor in iOS and WatchKit

iOS For an iOS app, in Swift 3, 4 or 5: theImageView.image = theImageView.image?.withRenderingMode(.alwaysTemplate) theImageView.tintColor = UIColor.red For Swift 2: theImageView.image = theImageView.image?.imageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate) theImageView.tintColor = UIColor.redColor() Meanwhile, the modern Objective-C solution is: theImageView.image = [theImageView.image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate]; [theImageView setTintColor:[UIColor redColor]]; Watchkit In WatchKit for Apple Watch apps, you can set the tint color for a template … Read more