如何在swift中为apple watch制作简单的动画?
我已查看此blog
但它关于帧动画,我要求淡入,淡出,旋转与动画
例如使用这个低级功能
self.view.setAlpha(0.0)
我有android背景,所以我正在寻找苹果手表的一些快速功能,如在android等价的
Animation fadeInAnimation = AnimationUtils.loadAnimation(this, R.anim.fadein);
imageView.startAnimation(fadeInAnimation );
检查more
ObjectAnimator fadeIn = ObjectAnimator.ofFloat(myView, "alpha", .3f, 1f);
fadeIn.setDuration(2000)
答案 0 :(得分:2)
在Apple Watch代码中输入
animateWithDuration(0.3) {
self.view.setAlpha(0.0)
}
方法animateWithDuration是WKInterfaceController的一部分