我有一个数组UIImageViews
。我想对这些图像中的每一个应用阴影。我使用了下面的代码:
- (void)awakeFromNib {
for (UIImageView *image in imagesJigsawPieces) {
image.layer.shadowColor = [UIColor blackColor].CGColor;
image.layer.shadowOffset = CGSizeMake(-1, -1);
image.layer.shadowOpacity = 1;
image.layer.shadowRadius = 5.0;
image.clipsToBounds = NO; //EDIT: I have also included this with no change
}
}
我也包括在内#import <QuartzCore/CALayer.h>
。
我没有收到任何错误,但我的图像上也没有任何阴影。