iPhone:从表格视图单元格中删除圆角
我的应用程序中有一个表格视图,默认情况下显示圆角。
有什么办法可以去除圆角吗?
我已就位 #import
并包含了框架。
前夕以下代码不起作用
self.clipsToBounds = NO;
self.table.layer.cornerRadius = 0.0;
任何人都可以提出解决方案吗?
提前致谢
i have a table view in my application which shows rounded corners by default.
Is there any way to remove the rounded corners.
I have #import <QuartzCore/QuartzCore.h>
in place and included the frame work as well.
eve the following code does not work
self.clipsToBounds = NO;
self.table.layer.cornerRadius = 0.0;
can any one suggest a solution?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 UITableViewStyleGrouped 单元格,您需要更改单元格上的背景视图。
For a UITableViewStyleGrouped cell, you'll need to change the backgroundView on your cell.
您是否在表格视图上使用
UITableViewStyleGrouped
?如果是这样,请将样式更改为UITableViewStylePlain
并且单元格将是没有圆角的矩形。Are you using
UITableViewStyleGrouped
on your table view? If so change the style toUITableViewStylePlain
and the cells will be rectangulars without rounded corners.