在 UITableView 中创建一个小的配置面板
我需要创建一个小型 UITableView
,其中每个单元格都包含一个 UISwitch
。
例如,我想在第 0 行和第 1 行有两个 UISwitch
,“A”和“B”,这样如果我将开关“A”设置为“开”,开关“B”将转到关闭位置。
我怎样才能简单地做到这一点?
谢谢。
I need to create a small UITableView
with cells that each contain a UISwitch
.
For example I want to have two UISwitch
s, "A" and "B", at rows 0 and 1, so that if I set switch "A" to On, switch "B" will go to the Off position.
How I can do that simply?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建自定义表格视图单元格。
在这里查找 UISwitch 类参考。
用它来检测开关的变化。
类似的帖子可以在此处找到
You need to create custom table view cells.
Look here for UISwitch class reference.
Use this to detect the changes in switch.
Similar post is found here
首先标记开关:
然后实现 actionSwitch 选择器:
First tag the switches:
Then implement the actionSwitch selector: