我拥有WatchKit Extension所需的所有数据(从iOS应用程序传递)。
我使用WatchKit InterfaceController
中的数据填写表格,该表格完美无缺。
我试图找出在我的WatchKit ComplicationController
中获取相同数据的最佳方式。
目前,在InterfaceController
中,数据是使用didReceiveUserInfo
传递的:
func session(session: WCSession, didReceiveUserInfo userInfo: [String : AnyObject]) {
if let beachValue = userInfo["Surf"] as? String {
places.append(Place(dataDictionary: ["Surf" : surfValue]))
} else {
print("Something went wrong")
}
}
我是否需要在WCSession
中调用相同的ComplicationController
方法并再次抓取整个数据,或者是否有任何方便我访问此相同数据用于ComplicationController
?
任何帮助表示赞赏。谢谢!
修改:
我的表功能:
func makeTable() {
// Per SO
let myDelegate = WKExtension.sharedExtension().delegate as! ExtensionDelegate
let accessVar = myDelegate.places
self.rowTable.setNumberOfRows(accessVar.count, withRowType: "rows")
for (index, evt) in accessVar.enumerate() {
if let row = rowTable.rowControllerAtIndex(index) as? TableRowController {
row.mLabel.setText(evt.evMat)
} else {
print(“No”)
}
}
}
答案 0 :(得分:10)
// Get the complication data from the extension delegate.
let myDelegate = WKExtension.sharedExtension().delegate as! ExtensionDelegate
var data : Dictionary = myDelegate.myComplicationData[ComplicationCurrentEntry]!
以上Apple's Doc只是一个示例,用于在扩展委托中存储复杂功能所需的数据,并将其视为单独访问的方式。对“myComplicationData”的引用是Dictionary的示例,默认情况下不是ExtensionDelegate中的参数。
将您自己的类设置为单个按钮,为您的手表保存数据,如下所示:
// Access by calling:
// Model.sharedModel.modelVal1
class Model {
static let sharedModel = Model()
var modelVal1: Float!
var modelVal2: String!
}
或者使用扩展委托作为您的单身人士,并将您的属性添加到其类中,如下所示。这将允许您访问在ExtensionDelegate中创建的任何变量。
// ExtensionDelegate.swift
class ExtensionDelegate: NSObject, WKExtensionDelegate {
var dataVar1: Float!
var dataVar2: String!
var myDictionary: [String: String]!
}
// ComplicationController.swift
import WatchKit
class ComplicationController: NSObject, CLKComplicationDataSource {
func someMethod() {
let myDelegate = WKExtension.sharedExtension().delegate as! ExtensionDelegate
// Here is an example of accessing the Float variable
let accessVar = myDelegate.dataVar1
let myDict = myDelegate.myDictionary
}
}
使用任何一种方式都有助于将您的数据保存在一个位置,这样您就可以随时从手表扩展程序中的任何类中访问它。
答案 1 :(得分:1)
嗯,我在我的应用程序中所做的是设置另一个singelton类来负责获取和保存我的Watch应用程序和复杂的数据。但这对我来说并不是最好的方式。不幸的是我没有得到Apple代码
var data : Dictionary = myDelegate.myComplicationData[ComplicationCurrentEntry]!
完全没有。我不明白myComplicationData
来自何处。