gpt4 book ai didi

swift - 我必须以编程方式添加按钮列表

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

如何使用 WatchKit 在 swift 2 中以编程方式添加一些按钮?

最佳答案

You can't dynamically create views in WatchKit. You need to create your entire interface in a storyboard. You can have elements of your storyboard hidden and then programmatically unhide them.

引用:Create imageView programmatically in Watch Kit

您可以创建表格而不是按钮。因此,您可以获得多个可点击的链接。

这是@natashatherobot 的教程http://natashatherobot.com/watchkit-create-table/

教程片段:

private func loadTableData() {
minionTable.setNumberOfRows(minions.count, withRowType: "MinionTableRowController")
for (index, minionName) in enumerate(minions) {
let row = minionTable.rowControllerAtIndex(index) as! MinionTableRowController
row.interfaceLabel.setText(minionName)
row.interfaceImage.setImage(UIImage(named: minionName))
}
}

关于swift - 我必须以编程方式添加按钮列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31698226/

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