私の漫画本アプリは稼働していますが、いくつか不足しています。
1) 画像を左から右にスクロールさせたいのですが、アプリを開くと自動的に横向きモードに設定されています。アプリのこの部分はどこで調整できますか? (ところで...ポートレートモードで左から右にやっています)
2) 2 つの画像が表示されています... addSubView を使用してコード内の他の 22 の画像をどこに追加すればよいですか?
// load all the images from our bundle and add them to the scroll view
NSUInteger i;
for (i = 1; i <= kNumImages; i++)
{
NSString *imageName = [NSString stringWithFormat:@"image%d.jpg", i];
UIImage *image = [UIImage imageNamed:imageName];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
// setup each frame to a default height and width, it will be properly placed when we call "updateScrollList"
CGRect rect = imageView.frame;
rect.size.height = kScrollObjHeight;
rect.size.width = kScrollObjWidth;
imageView.frame = rect;
imageView.tag = i; // tag our images for later use when we place them in serial fashion
[scrollView1 addSubview:imageView];
[imageView release];
[self layoutScrollImages]; // ここで、写真をスクロールビュー内のシリアル レイアウトに配置します
}