├── .gitignore ├── .travis.yml ├── ABCustomUINavigationController.podspec ├── ABCustomUINavigationController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── andresbrun.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── andresbrun.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── SquaresFlipNavigationExample.xcscheme │ └── xcschememanagement.plist ├── ABCustomUINavigationControllerExample ├── ABCustomUINavigationController-Info.plist ├── ABCustomUINavigationController-Prefix.pch ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── ViewControllers │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── ThirthViewController.h │ ├── ThirthViewController.m │ ├── ViewController.h │ ├── ViewController.m │ └── Views │ │ ├── SecondViewController_iPad.xib │ │ ├── SecondViewController_iPhone.xib │ │ ├── ThirthViewController_iPad.xib │ │ ├── ThirthViewController_iPhone.xib │ │ ├── ViewController_iPad.xib │ │ └── ViewController_iPhone.xib ├── assets │ ├── bg_1.jpg │ ├── bg_1_iPad.jpg │ ├── bg_2.jpg │ ├── bg_2_iPad.jpg │ ├── bg_3.png │ └── bg_3_iPad.jpg ├── en.lproj │ └── InfoPlist.strings └── main.m ├── CustomUINavigationController ├── Categories │ ├── NSNumber+ABGenerator.h │ ├── NSNumber+ABGenerator.m │ ├── NSObject+ABExtras.h │ ├── NSObject+ABExtras.m │ ├── UIImage+ABExtras.h │ ├── UIImage+ABExtras.m │ ├── UIView+ABExtras.h │ └── UIView+ABExtras.m ├── Classes │ ├── NSArrayMatrix.h │ └── NSArrayMatrix.m └── NavigationClasses │ ├── BaseControllerAnimatedTransitioningDelegate.h │ ├── BaseControllerAnimatedTransitioningDelegate.m │ ├── BaseNavigationController.h │ ├── BaseNavigationController.m │ ├── BaseNavigationControllerDelegate.h │ ├── BaseNavigationControllerDelegate.m │ ├── CubeNavigation │ ├── CubeAnimator.h │ ├── CubeAnimator.m │ ├── CubeNavigationController.h │ └── CubeNavigationController.m │ └── GridBaseNavigation │ ├── GridBaseAnimator.h │ ├── GridBaseAnimator.m │ ├── PixelateNavigation │ ├── PixelateGridAnimator.h │ ├── PixelateGridAnimator.m │ ├── PixelateNavigationController.h │ └── PixelateNavigationController.m │ └── SquaresFlipNavigation │ ├── FlipSquaresGridAnimator.h │ ├── FlipSquaresGridAnimator.m │ ├── FlipSquaresNavigationController.h │ └── FlipSquaresNavigationController.m ├── LICENSE.txt ├── README.md └── example_images ├── example.gif ├── example.mov ├── example_1.png ├── example_2.png ├── example_3.png ├── example_4.png ├── example_5.png ├── example_6.png ├── example_cube.gif ├── example_cube_1.png ├── example_cube_2.png └── example_full.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c -------------------------------------------------------------------------------- /ABCustomUINavigationController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.podspec -------------------------------------------------------------------------------- /ABCustomUINavigationController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ABCustomUINavigationController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ABCustomUINavigationController.xcodeproj/project.xcworkspace/xcuserdata/andresbrun.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.xcodeproj/project.xcworkspace/xcuserdata/andresbrun.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ABCustomUINavigationController.xcodeproj/xcuserdata/andresbrun.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.xcodeproj/xcuserdata/andresbrun.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /ABCustomUINavigationController.xcodeproj/xcuserdata/andresbrun.xcuserdatad/xcschemes/SquaresFlipNavigationExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.xcodeproj/xcuserdata/andresbrun.xcuserdatad/xcschemes/SquaresFlipNavigationExample.xcscheme -------------------------------------------------------------------------------- /ABCustomUINavigationController.xcodeproj/xcuserdata/andresbrun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationController.xcodeproj/xcuserdata/andresbrun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ABCustomUINavigationController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ABCustomUINavigationController-Info.plist -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ABCustomUINavigationController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ABCustomUINavigationController-Prefix.pch -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/AppDelegate.h -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/AppDelegate.m -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/Default-568h@2x.png -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/Default.png -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/Default@2x.png -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/SecondViewController.h -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/SecondViewController.m -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/ThirthViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/ThirthViewController.h -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/ThirthViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/ThirthViewController.m -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/ViewController.h -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/ViewController.m -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/Views/SecondViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/Views/SecondViewController_iPad.xib -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/Views/SecondViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/Views/SecondViewController_iPhone.xib -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/Views/ThirthViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/Views/ThirthViewController_iPad.xib -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/Views/ThirthViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/Views/ThirthViewController_iPhone.xib -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/Views/ViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/Views/ViewController_iPad.xib -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/ViewControllers/Views/ViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/ViewControllers/Views/ViewController_iPhone.xib -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/assets/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/assets/bg_1.jpg -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/assets/bg_1_iPad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/assets/bg_1_iPad.jpg -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/assets/bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/assets/bg_2.jpg -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/assets/bg_2_iPad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/assets/bg_2_iPad.jpg -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/assets/bg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/assets/bg_3.png -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/assets/bg_3_iPad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/assets/bg_3_iPad.jpg -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ABCustomUINavigationControllerExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/ABCustomUINavigationControllerExample/main.m -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/NSNumber+ABGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/NSNumber+ABGenerator.h -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/NSNumber+ABGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/NSNumber+ABGenerator.m -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/NSObject+ABExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/NSObject+ABExtras.h -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/NSObject+ABExtras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/NSObject+ABExtras.m -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/UIImage+ABExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/UIImage+ABExtras.h -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/UIImage+ABExtras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/UIImage+ABExtras.m -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/UIView+ABExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/UIView+ABExtras.h -------------------------------------------------------------------------------- /CustomUINavigationController/Categories/UIView+ABExtras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Categories/UIView+ABExtras.m -------------------------------------------------------------------------------- /CustomUINavigationController/Classes/NSArrayMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Classes/NSArrayMatrix.h -------------------------------------------------------------------------------- /CustomUINavigationController/Classes/NSArrayMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/Classes/NSArrayMatrix.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/BaseControllerAnimatedTransitioningDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/BaseControllerAnimatedTransitioningDelegate.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/BaseControllerAnimatedTransitioningDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/BaseControllerAnimatedTransitioningDelegate.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/BaseNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/BaseNavigationController.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/BaseNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/BaseNavigationController.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/BaseNavigationControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/BaseNavigationControllerDelegate.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/BaseNavigationControllerDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/BaseNavigationControllerDelegate.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/CubeNavigation/CubeAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/CubeNavigation/CubeAnimator.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/CubeNavigation/CubeAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/CubeNavigation/CubeAnimator.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/CubeNavigation/CubeNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/CubeNavigation/CubeNavigationController.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/CubeNavigation/CubeNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/CubeNavigation/CubeNavigationController.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/GridBaseAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/GridBaseAnimator.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/GridBaseAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/GridBaseAnimator.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateGridAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateGridAnimator.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateGridAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateGridAnimator.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateNavigationController.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/PixelateNavigation/PixelateNavigationController.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresGridAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresGridAnimator.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresGridAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresGridAnimator.m -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresNavigationController.h -------------------------------------------------------------------------------- /CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/CustomUINavigationController/NavigationClasses/GridBaseNavigation/SquaresFlipNavigation/FlipSquaresNavigationController.m -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/README.md -------------------------------------------------------------------------------- /example_images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example.gif -------------------------------------------------------------------------------- /example_images/example.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example.mov -------------------------------------------------------------------------------- /example_images/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_1.png -------------------------------------------------------------------------------- /example_images/example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_2.png -------------------------------------------------------------------------------- /example_images/example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_3.png -------------------------------------------------------------------------------- /example_images/example_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_4.png -------------------------------------------------------------------------------- /example_images/example_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_5.png -------------------------------------------------------------------------------- /example_images/example_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_6.png -------------------------------------------------------------------------------- /example_images/example_cube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_cube.gif -------------------------------------------------------------------------------- /example_images/example_cube_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_cube_1.png -------------------------------------------------------------------------------- /example_images/example_cube_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_cube_2.png -------------------------------------------------------------------------------- /example_images/example_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresbrun/ABCustomUINavigationController/HEAD/example_images/example_full.png --------------------------------------------------------------------------------