├── .gitignore ├── Printerest.png ├── PrinterestTabBar.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── PrinterestTabBar ├── AppDelegate.swift ├── Controller │ ├── Autolayout.swift │ ├── BaseViewController.swift │ ├── FloatingBarView.swift │ ├── PushViewController.swift │ ├── TabBarController.swift │ └── ViewController.swift ├── Info.plist ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Base.lproj │ │ └── LaunchScreen.storyboard └── SceneDelegate.swift ├── README.md └── img ├── capture.gif └── capture2.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/.gitignore -------------------------------------------------------------------------------- /Printerest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/Printerest.png -------------------------------------------------------------------------------- /PrinterestTabBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PrinterestTabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PrinterestTabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PrinterestTabBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/AppDelegate.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Controller/Autolayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Controller/Autolayout.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Controller/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Controller/BaseViewController.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Controller/FloatingBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Controller/FloatingBarView.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Controller/PushViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Controller/PushViewController.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Controller/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Controller/TabBarController.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Controller/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Controller/ViewController.swift -------------------------------------------------------------------------------- /PrinterestTabBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Info.plist -------------------------------------------------------------------------------- /PrinterestTabBar/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PrinterestTabBar/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PrinterestTabBar/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PrinterestTabBar/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/PrinterestTabBar/SceneDelegate.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/README.md -------------------------------------------------------------------------------- /img/capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/img/capture.gif -------------------------------------------------------------------------------- /img/capture2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishoste/printerest-tabbar/HEAD/img/capture2.gif --------------------------------------------------------------------------------