Snapchat-like text on image

后端 未结 4 1002
独厮守ぢ
独厮守ぢ 2021-02-06 13:51

I have been trying to implement a Snapchat-like edit text on an image. What I did so far is implement a UILabel in the center of the UIImageView and I added 3 gestures to this U

4条回答
  •  佛祖请我去吃肉
    2021-02-06 14:40

    For "it scales up / down way too much in a very aggressive way":

    You need to handle the pinch gesture scale value according to your need.

    From your recogniser method, you get the scale value as:

        var pinchScale: CGFloat = recogniser.scale
    

    You need to modify this value either like decrease it by /10 or /100 as per your need, and use this value in the label transformation instead of using the pangesture scale.

提交回复
热议问题