In ActionScript 3, we can apply a mask to a visual object like this:
SomeVisualObject.mask = maskShapeObject;
How to achieve the same result in Objective-C ? Suppose I have two UIImageView , I need something like this:
imageView1.mask = imageView2;
How can I use one UIImageView to mask or crop a form, another?
Almas adilbek
source share