Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created June 21, 2010 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igaiga/446469 to your computer and use it in GitHub Desktop.
Save igaiga/446469 to your computer and use it in GitHub Desktop.
Wait X sec on cocoa
// X sec 待つ
[NSThread sleepUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
// アニメーション開始時刻を遅らせる場合
view.alpha = 1.0f;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDelay:3]; // 3sec
[UIView setAnimationDuration:2.0];
view.alpha = 0.0f;
[UIView commitAnimations];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment