我使用下面的代碼在圖像視圖中加載圖像。但它不會讓我捏或縮放或任何東西。任何想法如何解決它?UIImageView不讓我放大圖像
NSURL *url = [NSURL URLWithString:self.myURL];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[[UIImage alloc] initWithData:data] autorelease];
self.imageView.image = img;