テーブルビューのセルで背景画像を使用し、shadowOpacityを使用していますが、スクロールが非常に少ないです。チューニングする方法は?
self.backgroundImageView.backgroundColor = [UIColor colorWithRed:241 green:241 blue:241 alpha:1];
self.backgroundImageView.layer.cornerRadius = 10;
self.backgroundImageView.layer.shadowOffset = CGSizeMake(0, 0);
self.backgroundImageView.layer.shadowOpacity = 0.3;
self.backgroundImageView.layer.masksToBounds = NO;