0

嗨,谁能告诉我如何去除我的 UITableView GroupStyle 角落的黑边。我为我的 UITableView Cell 创建了一个自定义视图。我已经尝试过此代码,但它在 IOS 5 中有效,但在 IOS 4.0 中无效。问题是我已经尝试了所有建议的解决方案,请帮助!
self.tableView = [UIColor ClearColor];在 viewDidLoad 在 iOS 5 中工作而不在 IOS 4 中工作是什么问题。
当我在模拟器 5.1 上运行它时,它不显示黑边,但在模拟器 4.3 中显示黑边。请帮忙

4

4 回答 4

0

谢谢大家帮助我。

实际上这对我有用

self.tableView backgroundcolor = [UIColor ClearColor];

但我错过了IBOutlettableView 的,所以我将 tableview 的属性与接口 Builder 连接起来,它对我有用!

于 2012-07-31T05:44:56.380 回答
0

要从单元格中删除边框:

tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
于 2012-07-30T07:22:42.810 回答
0

在代码中:

tableView.backgroundView = nil;

如果您通过 xib 放置表格:

使SeparatorStyle = 单行

于 2012-07-30T08:56:06.580 回答
0

我用新视图替换了 tableView 的 backgroundView。

然后我依靠 tableView 的 backgroundColor 属性来设置我想要的颜色:

self.tableView.backgroundView = [[[UIView alloc] init] autorelease]; self.tableView.backgroundColor = [UIColor whiteColor];

于 2012-07-31T06:09:39.440 回答