ScrollView and Image Move Sample
// // nemesisViewController.h // viewTest // // Created by on 12. 1. 17.. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import <UIKit/UIKit.h> @interface nemesisViewController : UIViewController { UIView *backView, *displayView; UIScrollView *scView; UIProgressView *progress; CGFloat init_x; } @property ( nonatomic , retain ) IBOutlet UIView *backView; @property ( nonatomic , retain ) IBOutlet UIView *displayView; @property ( nonatomic , retain ) IBOutlet UIScrollView *scView; @property ( nonatomic , retain ) IBOutlet UIProgressView *progress; @end // // nemesisViewController.m // viewTest // // Created by on 12. 1. 17.. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import "nemesisViewController.h" @implementation nemesisViewController @synthesize backView, displayView, scView, progress; -...