UIImageView and UIScrollView zooming

后端 未结 6 1647
抹茶落季
抹茶落季 2020-12-04 19:45

Do I actually need a UIPinchGestureRecognizer inside a UIScrollView to have the pinch working? If yes how do I do it? I am trying to implement what flipboard has, where it b

6条回答
  •  借酒劲吻你
    2020-12-04 20:28

    For 'snap-image-to-screen-edges' solution @Shrikant Tanwade's worked well, but I wanted some insets. I tried settings constraints' constants, but that does not worked.

    I ended with following solution:

    1. same as for Shrikant's - set scrollView, imageView's constraints, set their constants to 0.

    2. set insets with scrollView.contentInset = UIEdgeInsetsMake(....

提交回复
热议问题