我正在尝试添加动画以将我的按钮从左向右移动。
我添加了以下代码
[self.view beginAnimations:nil context:nil];
[self.view setAnimationDuration:1.0f];
[button setFrame:newFrame];
[self.view commitAnimations];
但是当我构建时,我看到警告“实例方法 beginAnimations:context:未找到”
我添加了 QuartzCore 框架并包含
#import <QuartzCore/CoreAnimation.h>
有人可以告诉我我错过了什么吗?
谢谢