我试图通过以下代码为UIButton分配阴影:
self.addCardButton.layer.masksToBounds = NO;
self.addCardButton.layer.shadowOffset =CGSizeZero;
self.addCardButton.layer.shadowRadius = 5;
self.addCardButton.layer.shadowOpacity = 1.0;
self.addCardButton.layer.cornerRadius = 5.0;
self.addCardButton.layer.borderColor = [[UIColor lightGrayColor]CGColor];
self.addCardButton.layer.borderWidth = 0.5;
self.addCardButton.layer.shadowColor = [[UIColor lightGrayColor] CGColor];
在viewdidload()中。 仍然得到零结果....请帮助我知道这个故障的可能原因。