2011-05-09 3 views

답변

0

UILabel의에 추가하고 같은 애니메이션 블록을 사용

[UIView beginAnimations:@"animations" context:NULL]; 
    [UIView setAnimationCurve:UIViewAnimationCurveLinear]; 
    [UIView setAnimationDelay:.3f]; 
    [UIView setAnimationDuration:2.34f]; 

    label.frame = CGRectMake(label.frame.origin.x, label.frame.origin.y - 20.f, label.frame.size.width, label.frame.size.height); 
    [UIView commitAnimations]; 
관련 문제