我正在努力弄清楚如何将一个图像视图屏蔽到另一个图像视图。我试图将聊天气泡图像视图屏蔽到包含图片的图像视图,就像iMessage一样。
我已经尝试了我可能想到的imageView.layer.mask的每个组合,但都失败了。这很难的部分是因为气泡图像视图是由可伸缩的图像构成的。我不能使用它不起作用的常规图像蒙版。
任何想法??
答案 0 :(得分:0)
为什么不尝试这样的观点层次结构:
> Cell //The table view cell for one message
> UIView //Subview of your message table view cell - holds image views and/or text
> UIImageView //Subview of the UIView - the bubble image
> UIImageView //Also a subview of the UIView - your picture message
> UITextView //Alternative subview of the UIView - if the message isn't a picture