gpt4 book ai didi

swift - 使用 WatchKit 强制触摸 MenuItem 调用外部函数

转载 作者:搜寻专家 更新时间:2023-10-30 23:09:29 24 4
gpt4 key购买 nike

我需要实现一个 WatchKit force-touch MenuItem 来调用一个 saveWorkout() 方法,该方法位于一个单独的类中,该类不是 WKInterfaceController< 的子类.

我意识到每个类至少需要一个指定的初始化程序。我猜这是关键?

顺便说一句,我的“saveSession() reached”打印语句在使用 sim 时记录到控制台,但在我使用设备时却没有。即使在使用设备时,所有其他打印语句也会记录到控制台。有点奇怪。

我的初始化尝试抛出各种错误,例如:

1.fatal error: use of unimplemented initializer 'init()' for class 'DashboardController'

2.Missing argument for parameter 'context' in call

Dashboard.swift

class DashboardController: WKInterfaceController {

@IBOutlet var timerLabel: WKInterfaceTimer!
@IBOutlet weak var milesLabel: WKInterfaceLabel!

// var wSM: WorkoutSessionManager

//init(wSM: WorkoutSessionManager) {
// self.wSM = wSM
// super.init()
// }


override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)

addMenuItemWithItemIcon(.Accept, title: "Save", action: #selector(DashboardController.saveSession))
}

override func willActivate() {
super.willActivate()
print("Dashboard controller reached")
}

func saveSession() {
//wSM.saveWorkout()
print("saveSession() reached")
}

WorkoutSessionManager.swift

class WorkoutSessionContext {

let healthStore: HKHealthStore
let activityType: HKWorkoutActivityType
let locationType: HKWorkoutSessionLocationType

init(healthStore: HKHealthStore, activityType: HKWorkoutActivityType = .Other, locationType: HKWorkoutSessionLocationType = .Unknown) {

self.healthStore = healthStore
self.activityType = activityType
self.locationType = locationType
}
}

protocol WorkoutSessionManagerDelegate: class {
// ... protocol methods
}

class WorkoutSessionManager: NSObject, HKWorkoutSessionDelegate {

let healthStore: HKHealthStore
let workoutSession: HKWorkoutSession

init(context: WorkoutSessionContext) {
self.healthStore = context.healthStore
self.workoutSession = HKWorkoutSession(activityType: context.activityType, locationType: context.locationType)
self.currentActiveEnergyQuantity = HKQuantity(unit: self.energyUnit, doubleValue: 0.0)
self.currentDistanceQuantity = HKQuantity(unit: self.distanceUnit, doubleValue: 0.0)

super.init()

self.workoutSession.delegate = self
}

func saveWorkout() {
guard let startDate = self.workoutStartDate, endDate = self.workoutEndDate else {return}

// ...code...

最佳答案

fatal error 是由(或曾经)由这一行引起的:

让 wSM = WorkoutSessionManager()

该行创建了一个新的 WorkoutSessionManager 实例并对其调用了 init()

Swift 为任何结构或类提供了一个名为 init() 的默认初始化器,该结构或类为其所有属性提供默认值并且不提供至少一个初始化器本身。但是 WorkoutSessionManager 没有为 healthStoreworkoutSession 属性提供默认值(并且这些属性不是可选的),它提供了自己的名为 init(context: ),所以它没有默认初始化器。

您需要使用指定的初始化程序 init(context:)(传递适当的 WorkoutSessionContext 实例)创建 WorkoutSessionManager 实例,或者为名为 init() 的 WorkoutSessionManager 提供默认初始化程序

您执行前者的确切方式取决于应用程序其余部分的实现和 DashboardController 的呈现。我假设您正在尝试重新创建 WWDC 2015 Session 203 中所示的“Fit”应用程序.

在该演示中,初始 Controller 是 ActivityInterfaceController 的一个实例,该 Controller 负责呈现下一个界面(通过 Storyboard中创建的转场)。在ActivityInterfaceController类中可以看到如下代码:

override func contextForSegueWithIdentifier(segueIdentifier: String) -> AnyObject? {
let activityType: HKWorkoutActivityType

switch segueIdentifier {
case "Running":
activityType = .Running

case "Walking":
activityType = .Walking

case "Cycling":
activityType = .Cycling

default:
activityType = .Other
}

return WorkoutSessionContext(healthStore: self.healthStore, activityType: activityType)
}

上面的函数使用初始 Controller 持有的 HKHealthStore 实例创建并返回一个新的 WorkoutSessionContext 实例。该函数返回的上下文通过 awakeWithContext 传递给相关 segue 的目标接口(interface) Controller 。

对于代码中的转换,您可以使用等效函数传递上下文实例,例如 pushControllerWithName(context:),这也会导致 awakeWithContext

如果您的初始 Controller 与上述类似,您可以在 DashboardController 类的 awakeWithContext 中访问传递的上下文,并使用它来配置 WorkoutSessionManager 的新实例:

class DashboardController: WKInterfaceController
{
// ...

var wSM: WorkoutSessionManager?

override func awakeWithContext(context: AnyObject?) {
super.awakeWithContext(context)

if context is WorkoutSessionContext {
wSM = WorkoutSessionManager(context: context as! WorkoutSessionContext)
}

addMenuItemWithItemIcon(.Accept, title: "Save", action: #selector(DashboardController.saveSession))
}

// ...
}

以这种方式创建 WorkoutSessionManager 实例可避免调用(不存在的)init() 初始化程序,并允许重用 HKHealthStore 实例。该方法是否对您开放取决于您的其余代码以及您呈现 DashboardController 的方式。

请注意,您应该避免创建 WorkoutSessionManager 的多个实例。使用 singleton提供在您的扩展程序中共享的单个 WorkoutSessionManager 实例。

关于swift - 使用 WatchKit 强制触摸 MenuItem 调用外部函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38711226/

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