これは私のコードです。
listView.layer.masksToBounds = NO;
listView.layer.shadowOffset = CGSizeMake(-3, 3);
listView.layer.shadowColor=[[UIColor blackColor] CGColor];
listView.layer.shadowRadius = 4;
listView.layer.shadowOpacity = 1.0;
[listView.layer setShouldRasterize:YES];
影の効果でうまく機能します。
変化しながら
listView.layer.masksToBounds = YES;
影の効果が得られませんでした。