I'd like to reproduce this behavior in my iPad application. I have a subView that contains four custom buttons.
- The view has an alpha value of 0.0
- I have another custom button outside of the view descripted above that is always visible.
- When the user touches the visible button the view appear animating its alpha to 1.0 showing the other 4 buttons.
- Now I'like to start a timer that fires the view fadeOut after 2 seconds
- When and if the user interact (say touchDown or whatever) with the buttons the timers need to be reset.
In other words the view may disappear only when nobody touches a button inside It.
Can you help me with this.
I've managed to learn the basics of UIView animation but I don't know how to queue them. My iPad has iOS 3.2.2. installed. Sorry for the bad explanation but this is my first iPad application and my first obj-c project.