A-ViewContainer
A-ViewContainer copied to clipboard
UI container that able to handle multiple view controllers in one, with switch animation like card shuffle
A-ViewContainer
Multiple controller cards container
Default style:

Extra animation:

Usage
// If the view is A_MultipleViewContainer already, then you don't need to call InstallTo method.
A_MultipleViewContainer *centerView = [A_MultipleViewContainer A_InstallTo:self.view];
[centerView A_AddChild:[DemoLabelViewController createWithNumber:0]];
[centerView A_AddChild:[DemoLabelViewController createWithNumber:1]];
[centerView A_AddChild:[DemoLabelViewController createWithNumber:2]];
[centerView A_AddChild:[DemoLabelViewController createWithNumber:3]];
[centerView A_Display];