- (void)viewDidLoad
{
[super viewDidLoad];
UIScrollView * sv = [[UIScrollView alloc] initWithFrame:CGRectMake(50,50, 100, 100)];
sv.userInteractionEnabled = NO;
sv.backgroundColor = [UIColor orangeColor];
sv.contentSize = CGSizeMake(100, 200);
[self.view addSubview:sv];
UIImageView * iv = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
iv.image = [UIImage imageNamed:@"2"];
[sv addSubview:iv];
UIImageView * iv1 = [[UIImageView alloc] initWithFrame:CGRectMake(0, 100, 100, 100)];
iv1.image = [UIImage imageNamed:@"1"];
[sv addSubview:iv1];
[UIView animateWithDuration:1.0 animations:^(void){
iv1.frame = CGRectMake(0, -100, 100, 100);
} completion:^(BOOL finished){
[UIView animateWithDuration:1.0 animations:^(void){
iv1.frame = CGRectMake(0, 100, 100, 100);
} completion:^(BOOL finished){}];
}];
}