UILabel设置阴影半径不起作用。
[self.testLabel.layer setShadowColor:[[UIColor purpleColor] CGColor]];
[self.testLabel.layer setShadowOffset:CGSizeMake(3, 3)];
[self.testLabel.layer setShadowRadius:5.0f];
[self.testLabel.layer setMasksToBounds:YES];
我的代码(Google云端硬盘) https://drive.google.com/file/d/0B5UPvOBH3cqvOFlvZHhKdlNhb0E/view?usp=sharing
对不起,如果这是一个重复的问题。非常感谢。
答案 0 :(得分:9)
因为[self.testLabel.layer setMasksToBounds:YES];
此方法会使阴影不可见,您可以使用png / jpg格式制作阴影图像,并将图像设置在textLabel下方的图像视图中使其工作..
并且您还应将不透明度设置为1 ..
// self.testLabel.backgroundColor = [UIColor grayColor];
self.testLabel.layer.shadowOpacity = 1.0f;
[self.testLabel.layer setShadowColor:[[UIColor yellowColor] CGColor]];
[self.testLabel.layer setShadowOffset:CGSizeMake(3, 3)];
[self.testLabel.layer setShadowRadius:5.0f];
// [self.testLabel.layer setMasksToBounds:YES];
试试这个..