I’m using the following code to load an image in an image view. But it is not letting me pinch or zoom or anything. Any ideas how to fix it?
NSURL *url = [NSURL URLWithString:self.myURL];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[[UIImage alloc] initWithData:data] autorelease];
self.imageView.image = img;
Place your UIImageView within a UIScrollView and implement the zoom in and out methods.