1
vote
1answer
55 views

Zoom overlay image only

I have an overlayimage in my cameraoverlay. I need to zoom in/out when user double touches my overlayimage. Code for overlayimage: UIImageView *overlayImageView = [[UIImageView alloc] ...
1
vote
1answer
225 views

iOS 6 Autolayout - ScrollView with embedded ImageView not zooming properly

I am trying to setup a simple view that displays an image and allows users to zoom in/out and pan the image as they desire. I have autoLayout enabled and the view consists of a UIScrollView with an ...
0
votes
3answers
404 views

UIImageView Rotation and zooming in iPhone Sdk

i'm implementing zooming and rotation using UIImageview in my project, i'm facing problem in zoom in and zoom out after rotating the image, Here is my code follows: in .h file @interface ...
1
vote
2answers
604 views

UIImageView does not zoom

I would like to zoom an image on a popup view. I've created the UIView subclass, based on this sample code: ZoomView.h: @interface ZoomView : UIView <UIScrollViewDelegate> { UIScrollView ...
1
vote
1answer
1k views

Center an UIImageView on the screen when zoom out

I have an UIImageView inside an UIScrollView. I want that the user can zoom and navigate the image. This is my work code: //img is the UIImageView //scroller is the UIScrollView - (UIView ...
1
vote
1answer
4k views

Zooming on UIScrollView with paging enabled and multiple images

I Have a UIScrollview with a UIImageView inside where I scroll from an image to another. I used the TapToZoom Apple sample code to implement the zoom but whenever I zoom the scrollview starts from ...
0
votes
1answer
688 views

Zoom issue with UIImageView

I am trying to get pinch/zoom work but to no luck... please check code attached any help is appreciated. #import "SlideShowViewController.h" #import "SomAppDelegate.h" #import "MainCategory.h" ...