7

对于一个应用程序,我必须创建一个UIButton填充了渐变和背景图像。一切正常,直到我将操作系统从 iOS 5.1 升级到最近发布的 iOS 6。

这是模拟器的两个屏幕截图:

iOS 5.1 截图

iO 6 截图

嗯,第一个屏幕截图显示了我需要(并且做了),你可以看到棕色背景和灰色辐射。

下面是具有相同按钮但运行 iOS 6 的屏幕截图。如您所见,渐变消失了,底部出现了一条奇怪的白色条带UIButton

我已经查看了这是一个错误还是什么,但我什么也没发现,也许这里有人遇到过同样的问题?这是我的渐变代码

CAGradientLayer *gradient = [CAGradientLayer layer];
    gradient.frame = btnCountry.bounds;
    UIColor *colorTop = [UIColor colorWithRed:.992f green:.992f blue:.992f alpha:1];
    UIColor *colorBot = [UIColor colorWithRed:.788f green:.769f blue:.745f alpha:1];
    gradient.colors = [NSArray arrayWithObjects:(id)[colorTop CGColor], (id)[colorBot CGColor], nil];
    gradient.borderColor = [UIColor colorWithRed:.545f green:.506f blue:.459f alpha:1].CGColor;
    gradient.borderWidth = 1;

    gradient.masksToBounds = YES;
    gradient.cornerRadius = 11;
    [[btnCountry layer] insertSublayer:gradient atIndex:0];
4

3 回答 3

11

这是 ios6 中一个非常奇怪的问题,我在设置渐变时遇到了同样的问题,就像你通常会做的那样:

[myButton.layer insertSublayer:gradient atIndex:0];

所以我尝试将底线更改为此在 iOS 6 和较低版本的 IOS 中运行良好

[myButton.layer insertSublayer:gradient below:myButton.titleLabel.layer];

希望这会有所帮助

于 2012-10-29T14:34:21.273 回答
7

正如您在我的评论中看到的那样,问题来自班级UIGroupTableViewCellBackground,我只是将其隐藏起来。我认为这不是一个“干净”的解决方案,如果你有更好的解决方案我会很高兴听到它:-)

这是代码:

for(UIView* subView in btnCountry.subviews)
    if([subView isKindOfClass:NSClassFromString(@"UIGroupTableViewCellBackground")])
        [subView setHidden:YES];
于 2012-09-25T07:49:04.097 回答
2

在索引位置 1 插入图层对我有用。

可能最好的解决方案是检查 iOS 版本,并根据它在索引 0 或 1 处插入。

于 2012-09-26T10:17:56.897 回答