我想添加一个下拉阴影的 UIButton。我尝试使用 self. layer.shadow * 属性。这些属性在 UIView 中工作,但在 UIButton 中的行为不同。如果我能得到任何指导来绘制阴影,我将非常感激。谢谢!
self.layer.cornerRadius = 8.0f;
self.layer.masksToBounds = YES;
self.layer.borderWidth = 1.0f;
self.layer.shadowColor = [UIColor greenColor].CGColor;
self.layer.shadowOpacity = 0.8;
self.layer.shadowRadius = 12;
self.layer.shadowOffset = CGSizeMake(12.0f, 12.0f);