CAKeyframeAnimation 完成
我的类中有几个 CAKeyframeAnimation 对象。
他们都以 self 为代表。
在我的animationDidStop函数中,我如何知道调用来自哪里?
是否有任何变量可以传递给 CAKeyfameAnimation,例如animationID 或其他什么?
谢谢,
球座
I have several CAKeyframeAnimation objects in my class.
They all have self as the delegate.
In my animationDidStop function, how can I tell where the call is coming from?
Is there any variable I can pass to CAKeyfameAnimation like an animationID or something?
Thanks,
Tee
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用键值编码为 CAAnimation 对象设置任意键的值(键不需要提前定义)。
例如,您可以为每个 CAAnimation 对象设置一个键 @"tag" 的值,如下所示:
稍后,您可以读取每个对象的值,如下所示:
You can use Key-Value coding to set values for arbitrary keys (keys need not be defined in advance) for a CAAnimation object.
For example, you can set a value for a key @"tag" for each CAAnimation object as the following:
Later, you can read the value of each object as the following: