提问人:user717452 提问时间:5/7/2022 更新时间:5/7/2022 访问量:37
UIImageView 图片未覆盖的区域上的清晰背景
UIImageView Clear Background on Areas Picture Doesn't Cover
问:
我的应用程序中有一组旋转的图片,但有些图片的大小或比例与我的 UIImageView 不同。我想拥有它,以便图像视图中未被图片占据的区域保持透明,但我遇到了困难。这是我到目前为止尝试过的,但它在图片周围的两侧保持黑色。
_imageView = [UIImageView new];
_imageView.contentMode = UIViewContentModeScaleAspectFit;
_imageView.backgroundColor = [UIColor clearColor];
_imageView.opaque = NO;
self.view.backgroundColor = [UIColor clearColor];
[self.view addSubview:_imageView];
答: 暂无答案
评论
self.view.backgroundColor = [UIColor clearColor];
_imageView.backgroundColor = [UIColor redColor];