我正在使用ecslidingviewcontroller 2,它删除了anchortopviewoffscreen方法。
在菜单视图控制器中移动顶视图以便为搜索腾出空间的最佳方法是什么?
谢谢。
答案 0 :(得分:0)
这是我最终做的事情:
UIViewController *topViewController = self.slidingViewController.topViewController;
CGFloat dX = self.view.frame.size.width - self.slidingViewController.anchorRightRevealAmount;
// You can replace kSearchAnimationDuration with 0.25 or define it somewhere
[UIView animateWithDuration:kSearchAnimationDuration animations:^{
topViewController.view.layer.transform = CATransform3DTranslate(topViewController.view.layer.transform, dX, 0, 0);
}];
如果你有更好的方法,请告诉我。