gpt4 book ai didi

ios - 在 Swift 3 中添加单元格之间的空间

转载 作者:行者123 更新时间:2023-11-30 12:31:56 24 4
gpt4 key购买 nike

我想在 UITableView 中的单元格之间添加空间。

这是我的代码。我的意思是细胞然后空间然后细胞然后空间等等。

class TableViewController: UITableViewController {
var textArray = [String]()
var cellsArray = ["1","2","3"]

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
textArray = ["","",""]
self.tableView.estimatedSectionHeaderHeight = 80
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return textArray.count
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: (cellsArray[indexPath.row]), for: indexPath) as UITableViewCell
return cell
}
}

最佳答案

使用它作为两个单元格之间的空间

let testView: UIView = UIView(frame: CGRect(x:0, y:0, width:TableView1.frame.size.width , height:(cell?.contentView.frame.size.height)! - 5 ))
testView.backgroundColor = UIColor.blue
testView.alpha = 0.5
testView.isUserInteractionEnabled = true
testView.layer.cornerRadius = 5
testView.layer.masksToBounds = true
cell?.contentView.addSubview(testView)
cell?.contentView.sendSubview(toBack: testView)

关于ios - 在 Swift 3 中添加单元格之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43423518/

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