在UIView中逐个显示UIButtons

时间:2010-06-30 14:32:53

标签: objective-c animation

您好我有一个UIView,其中包含由Interface Builder中的其他人设计的几个按钮。现在,我需要在加载视图时逐个显示按钮,延迟为0.2秒。

有人可以告诉我如何实现这一点吗?例如在哪种方法中调用什么样的动画。

1 个答案:

答案 0 :(得分:0)

对NSTimers做一些研究。

[NSTimer scheduledTimerWithTimeInterval:0.2f
             target:self
         selector:@selector(showSecondButton:)
         userInfo:nil
         repeats:NO];


-(void)showSecondButton:(id)sender{
    [button2 setHidden:NO];
}