gpt4 book ai didi

ios - WatchKit-区分表中的表(table, didSelectRowAtIndex)

转载 作者:行者123 更新时间:2023-11-28 11:17:23 25 4
gpt4 key购买 nike

我的 WKInterfaceController 中有 2 个表。单击它们的行将推送到不同的 WKInterfaceController。我需要使用 override func table(table: WKInterfaceTable, didSelectRowAtIndex rowIndex: Int) 因为我需要传递一个上下文对象。

如何判断单击了 WKInterfaceTable 行?

像这样:

override func table(table: WKInterfaceTable, didSelectRowAtIndex rowIndex: Int) {
// If condition A is satisfied
{
presentControllerWithName("WKControllerA", context: self)
}
else
{
presentControllerWithName("WKControllerB", context: self)
}
}

最佳答案

像这样检查tablerowIndex:

override func table(table: WKInterfaceTable, didSelectRowAtIndex rowIndex: Int){

if table==myTable1 && rowIndex==myIndex {

//do something

} else if table==myTable2 && rowIndex==myIndex2 {

//do something else

}
}

关于ios - WatchKit-区分表中的表(table, didSelectRowAtIndex),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30901063/

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