時計と iOS 親アプリの間で通信するアプリを開発しています。それを開くことによって、WatchKit 拡張機能から親アプリケーションにデータを送信します。openParentApplication:reply
が呼び出されると、Apple Watch から iPhone アプリケーションが開くことを理解しています。その後application:handleWatchKitExtension:reply
、アプリのデリゲートで呼び出されます。
そこから、View Controller への通知を開くことができます。
NSNotificationCenter.defaultCenter().postNotificationName(aName: String, object anObject: AnyObject?)
「aName」は、ビューコントローラーで次のように開くことができるものです。
NSNotificationCenter.defaultCenter().addObserver(self,
selector: Selector("handleWatchKitNotification:"),
name: "WatchKitSaysHello",
object: nil)
私の WatchKit 拡張機能のインターフェイス コントローラーのコードは次のとおりです。
//
// InterfaceController.swift
// SendColors WatchKit Extension
//
// Created by Tommy on 12/30/14.
// Copyright (c) 2014 Tommy. All rights reserved.
//
import WatchKit
import Foundation
class InterfaceController: WKInterfaceController {
var ypo = false
override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)
// Configure interface objects here.
}
@IBOutlet weak var redButton: WKInterfaceButton!
@IBOutlet weak var greenButton: WKInterfaceButton!
@IBOutlet weak var blueButton: WKInterfaceButton!
@IBAction func onRedButtonClick() {
if ypo {
openParentAppWithColor("Yellow")
}
else {
openParentAppWithColor("Red")
}
}
@IBOutlet weak var moreButton: WKInterfaceButton!
@IBAction func moreButtonClick() {
if !ypo {
ypo = true
redButton.setTitle("Yellow")
redButton.setColor(UIColor.yellowColor())
greenButton.setTitle("Purple")
greenButton.setColor(UIColor.purpleColor())
blueButton.setTitle("Orange")
blueButton.setColor(UIColor.orangeColor())
moreButton.setTitle("Back")
}
else {
ypo = false
redButton.setTitle("Red")
redButton.setColor(UIColor.redColor())
greenButton.setTitle("Green")
greenButton.setColor(UIColor.greenColor())
blueButton.setTitle("Blue")
blueButton.setColor(UIColor.blueColor())
moreButton.setTitle("More...")
}
}
@IBAction func onGreenButtonClick() {
if ypo {
openParentAppWithColor("Purple")
}
else {
openParentAppWithColor("Green")
}
}
@IBAction func onBlueButtonClick() {
if ypo {
openParentAppWithColor("Orange")
}
else {
openParentAppWithColor("Blue")
}
}
override func willActivate() {
// This method is called when watch view controller is about to be visible to user
super.willActivate()
}
override func didDeactivate() {
// This method is called when watch view controller is no longer visible
super.didDeactivate()
}
private func openParentAppWithColor(color: String) {
if ["color": color] != nil {
if !WKInterfaceController.openParentApplication(["color": color], reply: { (reply, error) -> Void in
println(reply)
}) {
println("ERROR")
}
}
}
}
私の問題は、たとえば、時計シミュレーターの赤いボタンをクリックしたことです。アクションが呼び出され、そのアクションで呼び出される呼び出しopenParentApplicationWithColor("Red")
が呼び出されます。WKInterfaceController.openParentApplication(["color": color], reply: { (reply, error) -> Void in })
これが行うことになっているのは、シミュレーターで親アプリを開くことです。バックグラウンドで開きます。したがって、手動で開きます。アプリを手動で開くと、背景が完全に黒くなります。
問題は、[機能] タブでアプリ グループを有効にしなかったことにあると思われます。そのためには、開発者プログラムに参加する必要があります。これを行うには参加する必要がありますか、それとも別の問題がありますか? Xcode 6.2 Beta 3 を使用しています。よろしくお願いします。