我在+ (void)beginAnimations:(NSString *)animationID context:(void *)context
方法中有关于animationID的具体列表吗?
例如,我看到这段代码:
[UIView beginAnimations : @"Display notif" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationBeginsFromCurrentState:FALSE];
CGRect frame = paperCurl.frame;
frame.size.height -= 40;
frame.origin.y += 40;
paperCurl.frame = frame;
[UIView commitAnimations];