カスタムビューの下に影を追加しようとしています。次のコードがあります。
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);
しかし、影は見えません。