There is a bug when i use button.layer.masksToBounds = false
I cant set it to true and use cornerRadius
so I must set as false to use cornerRadius and shadowColor together
code (objective-c):
self.button.layer.cornerRadius = 30;
self.button.layer.shadowOffset = CGSizeMake(0, 10);
self.button.layer.shadowColor = [UIColor blackColor].CGColor;
self.button.layer.shadowRadius = 20;
self.button.layer.shadowOpacity = 0.5f;
self.button.layer.masksToBounds = NO;
There is a bug when i use
button.layer.masksToBounds = falseI cant set it to true and use
cornerRadiusso I must set as false to use cornerRadius and shadowColor together
code (objective-c):