What is the command of delaying an action to fade in an image?
Cocoa Touch animation delaying command
284 views Asked by Shuqom At
3
There are 3 answers
0

For Delaying the action u can do in AppDelegation, didFinishLaunchingWithOptions
[NSThread sleepForTimeInterval:2];
For Fade in and Fade out of Image. u can use custom methods for Fade and fade out
Better you could see this post http://iosdevelopertips.com/user-interface/fade-transition-fade-images-in-and-out.html
I find the new block-based animation methods on UIView pretty simple to work with:
https://developer.apple.com/documentation/uikit/uiview
You could do something like