我注意到,当您在 UIImageView 的 layer 属性上设置 shadowpath 时,它会破坏图像质量。有人可以告诉我为什么会发生这种情况以及正确的做法是什么?
imageView.layer.shouldRasterize = YES;
imageView.layer.shadowPath = [UIBezierPath bezierPathWithRect:imageView.bounds].CGPath;
更新
这是光栅化比例。您需要将其设置为屏幕的比例。否则它在创建位图时使用非视网膜图像!