画像を 1 フレームの高さまで移動するボタンを作成し、ボタンをもう一度押すと、画像を 1 フレームの高さまで戻します。
http://imageshack.us/photo/my-images/140/72197925.png/ (ソリューションの図)
できるだけ少ないコードを使用しようとしています。
UIImage *image = [UIImage imageNamed:@"01bear.png"];
imageView = [[UIImageView alloc] initWithImage:image];
CGRect applicationFrame = [[UIScreen mainScreen] applicationFrame];
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:applicationFrame];
scrollView.contentSize = CGSizeMake(5760, 1);
[scrollView addSubview:imageView];
[window addSubview:scrollView];
[window makeKeyAndVisible];
scrollView.delegate = self;
scrollView.pagingEnabled = YES;