当我将 xib 类设置为 UIView 的子类然后animateWithDuration
在 UIView 上我得到
No visible @interface for 'UIView' declares the selector
'animateWithDuration:delay:options:animations:completion:'
错误窗格显示这是一个 ARC 问题
我正在尝试在 UIView 上运行动画。
编辑:导致错误的代码
[sampleSourceView.view animateWithDuration:1
delay:1.0
options: UIViewAnimationCurveEaseOut
animations:^{
sampleSourceView.view.frame = sampleSourceFrame;
}
completion:^(BOOL finished){
NSLog(@"Done!");
}];
[self.view addSubview:sampleSourceView.view];