gpt4 book ai didi

ios - 细胞 View 的角半径

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

我正在使用平板电脑 View 并且我的表格 View 是分组的。我使用单个原型(prototype)单元格。在我的单元格中,我使用 UIView 并且只想将第一个单元格 View 设置为顶部,最后一个单元格 View 设置为底部。我在下面使用这段代码。当 TableView 首次加载时,它只显示第一个单元格 View 左角,但不显示右侧和底部单元格 View 。当我最后滚动并首先返回时,它工作正常。需要帮助请。谢谢抱歉我的英语不好

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var tableview: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

extension ViewController:UITableViewDataSource,UITableViewDelegate{

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 4
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

// tableview section
let cell = tableView .dequeueReusableCell(withIdentifier: "cell") as! MyTableViewCell
if indexPath.row == 0{

cell.myview.roundCorners(corners: [.topLeft,.topRight], radius: 10)

} else if indexPath.row == 3 {
cell.myview.roundCorners(corners: [.bottomRight,.bottomLeft], radius: 10)

}

return cell
}

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 200
}


func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {

// let cell = cell as! MyTableViewCell
}
}

extension UIView {
func roundCorners(corners:UIRectCorner, radius: CGFloat) {
let path = UIBezierPath(roundedRect: self.bounds, byRoundingCorners: corners, cornerRadii: CGSize(width: radius, height: radius))
let mask = CAShapeLayer()
mask.path = path.cgPath

self.layer.mask = mask
}
}

最佳答案

您还应该像这样处理中间的行:

switch indexPath.row {
case 0: //round top
cell.myview.roundCorners(corners: [.topLeft,.topRight], radius: 10)
case 3: //round bottom
cell.myview.roundCorners(corners: [.bottomRight,.bottomLeft], radius: 10)
default: //remove rounded corners. This is important since cells are reused
cell.myview.roundCorners(corners: [.allCorners], radius: 0)
}

关于ios - 细胞 View 的角半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40206807/

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