I'm new to Xcode and I can't find anything on this. I want to use UIViewAnimationCurve to move a UIImage from the lower left corner of the view to the upper left. I know the iPhone origin is upper left. How do I change this to the lower left so the animation can end in the upper right? This is what I have so far:
[UIView animateWithDuration:2.0
delay:2
options:UIViewAnimationCurveLinear | UIViewAnimationOptionAllowUserInteraction
animations:^{[MyImage setFrame:CGRectMake(0,200, 82, 78)]; }
completion:^(BOOL finished) {
[MyImage setFrame:CGRectMake(200,0, 82, 78)];
}];