Switching Views with the Flip Animation iPhone SDK
Loading...
2,708
Loading...
Uploader Comments (ninelivesoftware)
see all
All Comments (7)
-
Great tut! Keep them up. You make it heaps simple to follow along. What recording tool are you using?
-
Neat tut man. Always wondered how this worked. The utility sample code is confusing, though, and you are clear and easy. Good job!
Loading...
Hey, good tutorial. quick question tho: how would you go about starting a flip animation transition after a delay? I want to flip from a false splash screen on startup to the main view after a certain delay but can't find a good way to do this yet. Obviously there'd be no button outlet to link it to, it would simply commit the animation after a delay only - no user input needed. Thanks for your help!
RoastingCo 1 year ago
@RoastingCo NSTimer
ninelivesoftware 1 year ago
@ninelivesoftware Can you please elaborate at all? I have seen posts about using NSTimer to set a delay and complete an action, but not entirely sure how I might implement it...
RoastingCo 1 year ago
@RoastingCo ya, all you need to do is a viewDidLoad method and inside there do
[NSTimer scheduledTimerWithTimeInterval: 1.0 // it should auto complete and it is easy to fill
ninelivesoftware 1 year ago