I am using animation for images in scroll view animation working properly.My problem is that my scroll view sizes in my view is 34,197,204,105..but animated images not starting and not ending with in scroll view bounds . images animating with my view bounds.. i am using below code for Transition .please help me out
CATransition *transition = [CATransition animation];
transition.delegate = self;
transition.duration =1;
transition.type = kCATransitionPush;
transition.subtype=kCATransitionFromRight;
transition.fillMode = kCAFillModeBackwards;
transition.accessibilityFrame = CGRectMake(_scrollViewSlide.frame.origin.x, _scrollViewSlide.frame.origin.y, _scrollViewSlide.frame.size.width, _scrollViewSlide.frame.size.height);
[transition setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
[_scrollViewSlide.layer addAnimation:transition forKey:@"position"];