UIViewContentModeScaleAspectFit プロパティを使用して、スクロールビュー内で imageView をスケーリングしてスクロールビューのサイズに合わせることができないようです。
- (void)loadView {
UIImage* image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.moilum.com/images/atomicongallery/setmenu/setmenu1.jpg"]]];
imageView = [[UIImageView alloc]initWithImage:image];
imageView.contentMode = UIViewContentModeScaleAspectFit;
CGRect applicationFrame = [[UIScreen mainScreen] applicationFrame];
UIScrollView* scrollView = [[UIScrollView alloc]initWithFrame:applicationFrame];
[scrollView addSubview:imageView];
scrollView.contentSize = image.size;
scrollView.minimumZoomScale = 0.3;
scrollView.maximumZoomScale = 3.0;
scrollView.clipsToBounds = NO;
scrollView.delegate = self;
self.view = scrollView;
}
imageView.contentMode = UIViewContentModeScaleAspectFill も試しました。scrollView.contentmode = UIViewContentModeScaleAspectFill も同様です。すべてが機能していないようです:(
抜け道は!?
乾杯!