I'm working to get my apps configured for the new iPhone 5. So I started with investigating the auto-layout guide of cocao touch ([link][1]) and the WDC masterclasses.
But still one thing is unclear to me. How can I animate my views.
In my previous Apps I used the regular UIView animation like:
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:0.75];
MyView.frame = CGRectMake(0,100, 100, 100);
[UIView commitAnimations];
Or the CGAffineTransform methods.
Can someone tell me what the best workaround is when working with auto-layout, since I'm unable to refer to frames and don't make frame-declarations anymore? Settings timers and removing and adding constraints?