我的目标是显示一个subView
动画,我已经实现了一个专门的类来执行这样的动画,并且我已经从该类实例化并将其应用于我的子视图动画:
AnimationClass *ani = [[AnimationClass alloc] init];
ani.type = AnimationClassTypeTransition;
ani.direction = AnimationClassDirectionMoveUp;
[self.masterView addSubview:self.detailImage withAnimation:ani];
平滑过渡动画一切正常,但是,我收到以下警告:
'UIView' may not respond to 'addSubview:withAnimation:'
请问我该如何重构上面的代码来解决这个警告?提前感谢
编辑
masterView 是UIView
类型的属性。它是这样声明的:
@property (nonatomic, assign) UIView *masterView;
并在.m
.