如何在UITableView组部分周围创建发光效果?

时间:2011-12-14 18:53:39

标签: ios uitableview uiview

我目前正在使用下面的代码添加边框并围绕UIButton发光。我想在分组的UITableView中围绕每个部分获得相同的效果。我想知道是否有人对如何做到这一点有任何想法。

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.backgroundColor = [UIColor clearColor];
button.layer.backgroundColor = [UIColor colorWithHex:0x334962 alpha:1.0].CGColor;
button.clipsToBounds = NO;
button.layer.cornerRadius = 8;
button.layer.borderWidth = 3;
button.layer.shadowColor = [UIColor whiteColor].CGColor;
button.layer.shadowRadius = 2;
button.layer.shadowOpacity = .2;
button.layer.shadowOffset = CGSizeMake(0, 1);
button.layer.borderColor = [UIColor colorWithHex:0x273848 alpha:1.0000].CGColor;

提前致谢。

1 个答案:

答案 0 :(得分:0)

我认为你可以使用它....     您的值介于0到255之间。使用它们创建UIColor:

float r; float g; float b; float a;

[UIColor colorWithRed:r/255.f
            green:g/255.f
             blue:b/255.f    
            alpha:a/255.f];