2016年4月4日更新: Justedは、これを更新して、すべての投票に感謝します。また、これはもともと... ARCの前、制約の前、...多くのことの前に書かれていたことにも注意してください。したがって、これらの手法を使用するかどうかを決定するときは、このことを考慮してください。より現代的なアプローチがあるかもしれません。ああ、見つけたら。誰でも見ることができるように返信を追加してください。ありがとう。
今度いつか ...
多くの研究の後、私は2つの実用的な解決策を思いつきました。これらは両方とも機能し、タブ間のアニメーションを行いました。
解決策1:ビューからの移行(シンプル)
これは最も簡単で、事前定義されたUIView遷移メソッドを利用します。このソリューションでは、メソッドが機能するため、ビューを管理する必要はありません。
// Get views. controllerIndex is passed in as the controller we want to go to.
UIView * fromView = tabBarController.selectedViewController.view;
UIView * toView = [[tabBarController.viewControllers objectAtIndex:controllerIndex] view];
// Transition using a page curl.
[UIView transitionFromView:fromView
toView:toView
duration:0.5
options:(controllerIndex > tabBarController.selectedIndex ? UIViewAnimationOptionTransitionCurlUp : UIViewAnimationOptionTransitionCurlDown)
completion:^(BOOL finished) {
if (finished) {
tabBarController.selectedIndex = controllerIndex;
}
}];
解決策2:スクロール(より複雑)
より複雑なソリューションですが、アニメーションをより細かく制御できます。この例では、ビューをスライドさせてスライドさせます。これを使用して、ビューを自分で管理する必要があります。
// Get the views.
UIView * fromView = tabBarController.selectedViewController.view;
UIView * toView = [[tabBarController.viewControllers objectAtIndex:controllerIndex] view];
// Get the size of the view area.
CGRect viewSize = fromView.frame;
BOOL scrollRight = controllerIndex > tabBarController.selectedIndex;
// Add the to view to the tab bar view.
[fromView.superview addSubview:toView];
// Position it off screen.
toView.frame = CGRectMake((scrollRight ? 320 : -320), viewSize.origin.y, 320, viewSize.size.height);
[UIView animateWithDuration:0.3
animations: ^{
// Animate the views on and off the screen. This will appear to slide.
fromView.frame =CGRectMake((scrollRight ? -320 : 320), viewSize.origin.y, 320, viewSize.size.height);
toView.frame =CGRectMake(0, viewSize.origin.y, 320, viewSize.size.height);
}
completion:^(BOOL finished) {
if (finished) {
// Remove the old view from the tabbar view.
[fromView removeFromSuperview];
tabBarController.selectedIndex = controllerIndex;
}
}];
Swiftでのこのソリューション:
extension TabViewController: UITabBarControllerDelegate {
public func tabBarController(tabBarController: UITabBarController, shouldSelectViewController viewController: UIViewController) -> Bool {
let fromView: UIView = tabBarController.selectedViewController!.view
let toView : UIView = viewController.view
if fromView == toView {
return false
}
UIView.transitionFromView(fromView, toView: toView, duration: 0.3, options: UIViewAnimationOptions.TransitionCrossDissolve) { (finished:Bool) in
}
return true
}
}