0
votes
1answer
83 views

Zooming image smaller than UIImageView

I want to have a larger frame than an image so i do something like this: And of course i have UIScrollViewDelegate and i handle the zooming. But there is one problem. When i zoom picture i can ...
0
votes
1answer
140 views

Why can't I add a UIScrollView to a UIImageView (with it working properly)

I'm working on an app. Here I describe a simplified version of a strange problem I am experiencing. I have a storyboard created View Controller with a UIImageView also created in the storyboard. ...
0
votes
2answers
237 views

Can't set image in UIScrollView after zooming

I use ImageScrollView to show image. At the begining I show only small image. And when user tries to zoom, I load big image. First I wanted to do this using this code: - (UIView ...
1
vote
1answer
282 views

UIScrollView zooming in a fixed point, and disable the pinch in/out

i'm stuck on a problem with UIScrollView i wanna the scroll view be zoomed when the user tap on a specific point, and prevent the user to zoom in/out using Pinch Zoom Gestures, how can i do it? ...
0
votes
1answer
130 views

Difficulties in detecting touch while animating an imageview

I am trying to animate an image using following code: [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:40]; [UIView setAnimationCurve:UIViewAnimationCurveLinear]; ...