iOS 中 NSNotificationCenter 的 if 语句
我正在尝试在一个动画结束时开始另一个动画。
我正在检查这样的回调:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(animationDidStopNotification:)
name:ImageAnimatorDidStopNotification
object:animatorViewController];
如何制作一个 if 语句,让我在收到 ImageAnimatorDidStopNotification 时触发某些操作?
谢谢!
I'm trying start another animation when one ends.
I am checking for callbacks like this:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(animationDidStopNotification:)
name:ImageAnimatorDidStopNotification
object:animatorViewController];
How do I make an if statement that lets me do trigger something when ImageAnimatorDidStopNotification is received?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
animationDidStop
将动画链接在一起对于非常简单的场景非常有用。然而,对于任何更复杂的事情,它很快就会变得难以处理。Apple 推荐的一种更好的方法是利用 CAMediaTiming 协议。
他们在 WWDC 2011 会议 421“核心动画要点”视频中给出了一个很好的例子。您会在上面的链接中找到它。您将需要一个开发者帐户才能访问它。
视频快进到 42:36,了解“通知和计时”提示。
Chaining animations together using
animationDidStop
is useful for very simple scenarios. However, for anything more complex, it quickly becomes unwieldy.A much nicer approach as recommended by Apple, is to take advantage of the
CAMediaTiming
protocol.They give a great example in the WWDC 2011 videos in Session 421 "Core Animation Essentials". You'll find that in the link above. You will need a developer account to access that.
Fast forward in the video to 42:36 for the "Notifications and Timing" Tip.
您没有发布足够的代码来了解您要做什么以及问题出在哪里。
如果您想使用 UIKit 链接两个(或更多)动画,请尝试使用
setAnimationDidStopSelector:
选择器。You didn't post enough code to know what are you trying to do and where is the problem.
If you want to chain two (or more) animations with UIKit, try using
setAnimationDidStopSelector:
selector.