0

如何给NSView动画?ios中用于动画的函数如下。

[UIView animateWithDuration: duration
                                      delay:0.0
                                    options:curve
                                 animations:updateClocks
                                 completion:nil];

我想在 mac os 中使用相同的功能来制作动画。那么如何在给定参数的情况下为 mac os x 使用这个函数呢?

4

1 回答 1

0

这是因为 animateWithDuration 仅适用于 iOS 和 tVOS。您可以在 Apple 文档中看到它:

https://developer.apple.com/documentation/uikit/uiview/1622515-animatewithduration

在此处输入图像描述

你需要在 MacOSX 中找到对应的。

于 2017-10-26T05:22:35.520 回答