beginAnimations方法中的animationID列表

时间:2012-01-23 10:00:28

标签: iphone ios xcode ipad sdk

我在+ (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];

1 个答案:

答案 0 :(得分:1)

此键不是任何预定义的标准键。这些键只是用户定义的名称,用于引用此动画以供将来使用。Check this link for reference