如何使用3个不同区域遮罩图像:
你知道是否有可能吗?怎么样?
我知道怎么做没有白色区域。
答案 0 :(得分:0)
2次观看,有一些面具......
包含带有图像的图像视图的白色背景的视图。 图像视图的图层有一个蒙版。白色视图的图层有一个蒙版。
这对你有用吗?
UIView *view = [[UIView alloc] initWithFrame:frame];
view.backgroundColor = [UIColor whiteColor];
UIImageView *imageView = [[UIImageview alloc] initWithImage:image];
[view addSubview:imageView];
imageView.layer.mask = maskToShowWhite;
view.layer.mask = maskToShowTransparent;
或者您可以在drawRect中屏蔽图像并在顶部绘制白色?