我的主ViewController
(VC1
)有[UIView animateWithDuration: animations:]
,会弹出一个新按钮。按下所述按钮后,我的应用程序转到另一个ViewController
(VC2
)。
一切正常,但是当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
这是一个小问题,我想知道是否有人有任何快速的解决方案。如果你不理解,请告诉我,我会尝试更好地解释它