iPhone初心者ですが、
scrollView 内にある画像をスクロールしたいのですが、画像をスクロールできません。
これが私のコードスニペットです。
UIImage *image1 = [UIImage imageWithContentsOfFile:@"768bg_with_footer.gif"];
self.imageView = [[UIImageView alloc] initWithImage:image1];
[self.scrollView addSubview:self.imageView];
scrollView.contentSize = image1.size;
self.scrollView.contentOffset = CGPointZero;
ファイルに ScrollView を取りました.xib
。
どんな助けでも大歓迎です。