UIImages
をUIImageView
に追加しようとしており、UIScrollView
でスクロールできるようにしています。 UIImageView
の下にさまざまな画像を追加する方法がわかりません。 以下はUIImageView
に画像を追加し、スクロール可能にする私のコードです。UIScrollViewで10種類のUIImagesを追加する
- (void)viewDidLoad {
[super viewDidLoad];
UIImage *image = [UIImage imageNamed:@"ae.jpg"];
imageView = [[UIImageView alloc]initWithImage:image];
imageView.frame = [[UIScreen mainScreen] bounds];
imageView.contentMode = (UIViewContentModeScaleAspectFit);
imageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
imageView.backgroundColor = [UIColor clearColor];
UIScrollView* scrollView = [[UIScrollView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
scrollView.contentMode = (UIViewContentModeScaleAspectFit);
scrollView.contentSize = CGSizeMake(image.size.width,960);
scrollView.pagingEnabled = NO;
scrollView.showsVerticalScrollIndicator = NO;
scrollView.showsHorizontalScrollIndicator = NO;
scrollView.alwaysBounceVertical = NO;
scrollView.alwaysBounceHorizontal = NO;
scrollView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
scrollView.maximumZoomScale = 2.5;
scrollView.minimumZoomScale = 1;
scrollView.clipsToBounds = YES;
[scrollView addSubview:imageView];
[image release];
[imageView release];
[self.view addSubview:scrollView];
}
同じUIScrollViewで複数のUIImageViewを使用したいと思うかもしれません。しかし、あなたがしたいことが正確には不明です。 – jtbandes
「ae.png」の下に別の画像を追加してスクロールできるように、さまざまな画像を上下に追加したいとします。現在、画像は1つしかありませんが、UIIImageViewで画像の配列を追加したい場合は可能ですか? – lifemoveson
複数のUIImageViewを使用するだけです。 – jtbandes