gpt4 book ai didi

uitableview - tableview 将 subview 添加到自定义单元格

转载 作者:行者123 更新时间:2023-11-28 05:34:02 26 4
gpt4 key购买 nike

如何使用 addsubview 添加 UISwitch 到 tablview 的特定部分和行?

例如:

    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 12
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}


override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as cell_TableViewCell

var oneObject = UISwitch(frame: CGRect(x: 260, y: 5, width: 50, height: 30)) as UISwitch

if indexPath.section == 2 && indexPath.row == 0
{
oneObject.tag = 8
cell.contentView.addSubview(oneObject)
}

return cell
}

滚动时,此表格 View 将不断添加到随机单元格。

最佳答案

cellForRowAtIndexPath 应该只用于设置单元格的属性,而不是添加或删除 subview 。由于每个表行都会重复使用该单元格(无论如何在您的示例中),因此在一次调用中添加开关最终会影响所有行,即使在看似随机的时间也是如此。更好的方法是将 UISwitch 添加到原型(prototype)单元格,然后在 cellForRowAtIndexPath 中隐藏或显示它。

关于uitableview - tableview 将 subview 添加到自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25883294/

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