gpt4 book ai didi

objective-c - UITableView 中的圆角 (iOS7)

转载 作者:太空狗 更新时间:2023-10-30 03:10:25 25 4
gpt4 key购买 nike

在 iOS7 中,如何在 UITableView 中绘制单元格的圆角?看一个例子:

enter image description here

最佳答案

您的 UITableview 包含 UIView,因此只需使用下面的代码行来使其圆角。还要在你的 tableview 方法中写下这行代码

//如果iOS版本<10

对于 Objective-C:

cell.contentView.layer.cornerRadius = 5;
cell.contentView.layer.masksToBounds = YES;

对于 swift :

cell.contentView.layer.cornerRadius = 5
cell.contentView.layer.masksToBounds = true

//如果iOS版本>=10

对于 Objective-C:

cell.layer.cornerRadius = 5;
cell.layer.masksToBounds = YES;

对于 swift :

cell.layer.cornerRadius = 5
cell.layer.masksToBounds = true

注意:无需显式导入QuartzCore 框架

关于objective-c - UITableView 中的圆角 (iOS7),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22049226/

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