in my app I have a view controller with an image view in it. But whenever I go there for some reason I can't zoom in or zoom out. What can be the problem?
code:
-(void)loadView {
UIImageView *imgView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"testImage.png"]];
[self.view addSubview:imgView];
[self.view bringSubviewToFront:imgView];
}