gpt4 book ai didi

ios - 是否 openParentApplication :reply require App Groups capability to be enabled?

转载 作者:可可西里 更新时间:2023-10-31 23:59:24 25 4
gpt4 key购买 nike

我正在开发一个在 watch 和 iOS 父应用程序之间进行通信的应用程序。它通过打开 WatchKit 扩展将数据发送到父应用程序。我知道 openParentApplication:reply 在调用时会从 Apple Watch 打开 iPhone 应用程序。之后,在应用程序的委托(delegate)中调用 application:handleWatchKitExtension:reply

从那里你可以打开一个到 View Controller 的通知:

NSNotificationCenter.defaultCenter().postNotificationName(aName: String, object anObject: AnyObject?)

“aName”是您可以在 View Controller 中打开的内容:

NSNotificationCenter.defaultCenter().addObserver(self,
selector: Selector("handleWatchKitNotification:"),
name: "WatchKitSaysHello",
object: nil)

这是我的 WatchKit 扩展中的界面 Controller 代码:

//
// 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")
}
}
}
}

我的问题是,比如说我点击了 watch 模拟器上的红色按钮。该操作将被调用,并且在该操作中它调用 openParentApplicationWithColor("Red") 将调用 WKInterfaceController.openParentApplication(["color": color], reply: { (reply, error) -> Void in }) 这应该做的是在模拟器上打开父应用程序。它在后台 打开它。因此,我手动打开它。当我手动打开应用程序时,背景是全黑的。
我怀疑问题是我没有在功能选项卡中启用应用程序组。为此,您需要加入开发人员计划。我应该加入它来做这个,还是有其他问题?我正在使用 Xcode 6.2 Beta 3。提前谢谢大家!

最佳答案

我已经测试并可以确认 openParentApplication:reply: 不需要需要启用应用程序组。

I understand that openParentApplication:reply, when called, opens the iPhone application from the Apple Watch.

此方法在后台打开 iPhone 应用程序。在之前的 Xcode 6.2 测试版中,该应用程序确实在前台打开,但这不是预期的行为,也不是 WatchKit Extension-iPhone 应用程序通信在发布版本中的工作方式。

您仍然可以在前台手动启动 iPhone 应用程序,但这不是必需的,除非您想要测试同时使用这两个应用程序的用例。至少对于当前可用的 API,iPhone 应用程序无法通过 watch 应用程序以编程方式启动到前台,而 watch 应用程序无法通过 iPhone 应用程序以编程方式启动。

应用启动后,您报告说屏幕仍然是黑色的,而您希望它根据您发送的消息改变颜色。 application:handleWatchKitExtension:reply: 是否在 iPhone 应用程序中被调用?如果您收到要在 WatchKit 扩展中执行的回复 block ,您就会知道它肯定会被调用,它应该从您的 println(reply) 输出一些东西。如果是这样,那么问题出在 iPhone 应用程序中的代码对您传递给它的消息执行某些操作。在 iPhone 应用程序的 AppDelegate 中查看该方法的实现会很有用。 (请注意,如果该方法未能调用回复 block ,它可能仍在接收消息并且您不会收到回复,但随后您会看到一条关于未收到回复的错误消息。)

请注意,最初运行 Watch 扩展时,您不会在 Xcode 中看到 NSLog 消息或获取断点,但您可以选择“调试”>“附加到进程”> [在“可能的目标”下选择您的 iPhone 应用],然后您将获得iPhone 应用程序而不是 Watch 应用程序的日志和断点,同时仍然能够在 watch 模拟器中使用 Watch 应用程序。对调试最有用。

关于ios - 是否 openParentApplication :reply require App Groups capability to be enabled?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27893877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com