views:

11

answers:

1

Hi I have a UIView which contains several buttons that are designed by others in Interface Builder. Now I need to show the buttons one by one with a 0.2 second delay, when the View is loaded.

Can someone give me some clue how I could implement this? e.g. in which method call what kind of animation.

A: 

Do some research on NSTimers.

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


-(void)showSecondButton:(id)sender{
    [button2 setHidden:NO];
}
Ryan Detzel
Thank you! solved my problem.
boreas