iPhone:从表格视图单元格中删除圆角

发布于 2024-09-14 16:30:25 字数 283 浏览 3 评论 0原文

我的应用程序中有一个表格视图,默认情况下显示圆角。

有什么办法可以去除圆角吗?

我已就位 #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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

或十年 2024-09-21 16:30:25

对于 UITableViewStyleGrouped 单元格,您需要更改单元格上的背景视图。

UIView *bg = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 60)];
bg.backgroundColor = [UIColor whiteColor];
cell.backgroundView = bg;

[bg release]; // if you're not using ARC

For a UITableViewStyleGrouped cell, you'll need to change the backgroundView on your cell.

UIView *bg = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 60)];
bg.backgroundColor = [UIColor whiteColor];
cell.backgroundView = bg;

[bg release]; // if you're not using ARC
白昼 2024-09-21 16:30:25

您是否在表格视图上使用 UITableViewStyleGrouped ?如果是这样,请将样式更改为 UITableViewStylePlain 并且单元格将是没有圆角的矩形。

Are you using UITableViewStyleGrouped on your table view? If so change the style to UITableViewStylePlain and the cells will be rectangulars without rounded corners.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文