LoginSignup
5
7

More than 5 years have passed since last update.

CAAnimation の開始を秒数で遅延させる

Posted at
CGFloat delay = 2.0; // 2秒遅延
CAAnimation *anim;
anim.beginTime = CACurrentMediaTime() + delay;
[layer addAnimation:anim forKey:@"key"];
5
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
7