If you want to try it, simply run:
pod try PATabbarViewTo run the example project, clone the repo, and run pod install from the Example directory first.
PATabbarView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "PATabbarView"1.Add PATabbarView To Interface.
2.Make PATabbarPushedView,and call addToTailView: in addition to this as an argument
UINib *nib = [UINib nibWithNibName:@"PATabbarPushedView" bundle:nil];
PATabbarPushedView *pushedView= [nib instantiateWithOwner:nil options:nil][0];
[self.tabbarView addToTailView:pushedView];
If call deleteView:, Argument view is deleted from PATabbarView with delete and reposition animation. PushedView must be in subview of PATabbarPushedView.
[self.tabbarView deleteView:pushedView];
If call adjustPositionWithAForcusOnView:,Pushed views reposition With A Forcus On argument view with a animation.
[self.tabbarView adjustPositionWithAForcusOnView:centerPushedView];
You can applie autolayout and autosize to PATabbarPushedView obj. You had better use autolayout with nib.(Possible in other ways! maybe..)
#Requirements
・Xcode 7.0 or greater
・iOS8.0 or greater
Inba, gyuuuuchan@gmail.com
PATabbarView is available under the MIT license. See the LICENSE file for more info.
