Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 UITableView 周围有一个边框,并让角变圆。我知道这在表格单元格上是可能的,但想知道最好的方法是什么。我正在使用容器视图将表格保存在屏幕的一部分中。
确保您在目标属性页面中链接到 QuartzCore 框架。
在视图控制器上添加:
#import <QuartzCore/QuartzCore.h>
然后你可以像这样设置表格视图层的圆角半径:
_tableView.layer.cornerRadius = 6.0f;
使用任何适合您的值。