如何在转换到另一个viewcontroller时将动画视图保留在屏幕上

时间:2016-01-04 21:13:36

标签: ios objective-c uiview uiviewcontroller uianimation

我的主ViewControllerVC1)有[UIView animateWithDuration: animations:],会弹出一个新按钮。按下所述按钮后,我的应用程序转到另一个ViewControllerVC2)。

一切正常,但是当segue正在发生时(switching from VC1 to VC2),向左滑动的屏幕(VC1)显示最初在VC1上的内容(在[UIView animateWithDuration: animations:]之前地方)。

我已尝试将其放入viewWillDisappear

-(void)viewWillDisappear:(BOOL)animated {
  self.showProfile.center  = CGPointMake(50, 400, 150, 21);
}

showProfile是从另一个位置(view/button)动画的and the point 50, 400, 150, 21 is where it was animated to, and where I want it to stay relative to VC1 while it segues into VC2

这是一个小问题,我想知道是否有人有任何快速的解决方案。如果你不理解,请告诉我,我会尝试更好地解释它

0 个答案:

没有答案