我正在尝试在自定义视图下添加阴影,我有以下代码:
CGContextSaveGState(context);
CGContextSetShadow(context, CGSizeMake(0, 2), 3.0);
CGRect shadowRect = CGRectMake(self.bounds.origin.x,
self.bounds.origin.y + self.bounds.size.height,
self.bounds.size.width,
3.0);
CGContextFillRect(context, shadowRect);
CGContextRestoreGState(context);
但影子是看不见的。