ビューセルをカスタマイズしたテーブルビューがあり、それらに影を描きたいです。私はすでにビューのレイヤーを使用していますが、この方法で影を描くと、テーブルビューが非常に遅くなります。これはコードです:
UIView *foreground = [[UIView alloc] initWithFrame:CGRectMake(8., 8., 305, 290.)];
foreground.tag = kForegroundTag;
foreground.backgroundColor = [UIColor whiteColor];
/* Draw from here */
foreground.layer.shadowColor = [UIColor blackColor].CGColor;
foreground.layer.shadowOpacity = 0.7;
foreground.layer.shadowOffset = CGSizeMake(0., 1.);
foreground.layer.shadowRadius = 3.;
助けてくれてありがとう