如何在UIView for iPhone app中为字符串中的字符设置动画

时间:2011-05-09 10:03:47

标签: iphone

我是iphone开发的新手。有人可以帮助我动画NSArray中的角色吗?我想在UIView中制作并展示特征。

请帮帮我。提前谢谢。

1 个答案:

答案 0 :(得分: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];