iOS 文字图片模糊问题
1. 阴影导致
1 2 |
// self.layer.shouldRasterize = YES; 注释掉 |
- CGRect 小数导致
1 2 |
[loadingText setFrame:CGRectIntegral(loadingText.frame)]; |
- 缩放导致
1 2 |
uiimageView.layer.magnificationFilter = @"nearest"; |
Leave a Comment