Is it not possible to have a UIView be a maskedView to more than 1 view? I'm setting the maskView on the following UIViews, but only the last one retains the mask setting.
imageOne.maskView = viewMask
labelThing.maskView = viewMask
labelOtherThing.maskView = viewMask
labelLastThing.maskView = viewMask
labelMaskThis.maskView = viewMask //the only masked view
Troubleshooting this, I commented out the last line, and confirmed my suspicions.
imageOne.maskView = viewMask
labelThing.maskView = viewMask
labelOtherThing.maskView = viewMask
labelLastThing.maskView = viewMask //now gets the mask
//labelMaskThis.maskView = viewMask
Is there a way for my viewMask: UIView
to be applied to more than 1 view?