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];