使用自定义背景时奇怪的UITableViewCell阴影?

时间:2012-08-01 05:46:58

标签: iphone

确定。所以,我想要tableview的自定义背景,所以我使用了以下代码:

[[self tableView] setBackgroundColor:[UIColor colorWithPatternImage:
                                    [UIImage imageNamed:@"red-background.png"]]];

[[self view] setBackgroundColor:[UIColor colorWithPatternImage:
                                    [UIImage imageNamed:@"red-background.png"]]];
[self.tableView setBackgroundColor:[UIColor clearColor]];

但最终结果是: enter image description here

这真令人讨厌和丑陋。

有没有人有任何想法?

2 个答案:

答案 0 :(得分:1)

enter image description here使用此行,

  UITableViewSeparatorStyleSingleLine.
[tableProfile setBackgroundColor:[UIColor clearColor]];

这是我在我的应用中所做的更改。

答案 1 :(得分:0)

好的结果是图像像那样搞砸......因为我尝试了另一张图片而且效果非常好。问题解决了!非常感谢iApple的帮助和时间!