├── .DS_Store ├── .gitignore ├── .ruby-version ├── Example ├── .DS_Store ├── SampleSporify.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcuserdata │ │ │ └── emre.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── daniel.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── emre.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── SampleSporify │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MainTabBarController.swift │ ├── SampleChildViewController.swift │ ├── SampleChildViewController.xib │ ├── SceneDelegate.swift │ ├── SecondViewController.swift │ └── ViewController.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── StickyTabBarViewController.podspec ├── StickyTabBarViewController └── Classes │ ├── ExpandableViewController.swift │ ├── ExpandableViewController.xib │ └── StickyViewControllerSupportingTabBarController.swift └── pull_request_template.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.3 2 | -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/project.xcworkspace/xcuserdata/emre.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/project.xcworkspace/xcuserdata/emre.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/xcuserdata/daniel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/xcuserdata/daniel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/xcuserdata/emre.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/xcuserdata/emre.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/SampleSporify.xcodeproj/xcuserdata/emre.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify.xcodeproj/xcuserdata/emre.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/SampleSporify/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/AppDelegate.swift -------------------------------------------------------------------------------- /Example/SampleSporify/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/SampleSporify/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/SampleSporify/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/SampleSporify/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/SampleSporify/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/Info.plist -------------------------------------------------------------------------------- /Example/SampleSporify/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/MainTabBarController.swift -------------------------------------------------------------------------------- /Example/SampleSporify/SampleChildViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/SampleChildViewController.swift -------------------------------------------------------------------------------- /Example/SampleSporify/SampleChildViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/SampleChildViewController.xib -------------------------------------------------------------------------------- /Example/SampleSporify/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/SampleSporify/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/SecondViewController.swift -------------------------------------------------------------------------------- /Example/SampleSporify/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Example/SampleSporify/ViewController.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/README.md -------------------------------------------------------------------------------- /StickyTabBarViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/StickyTabBarViewController.podspec -------------------------------------------------------------------------------- /StickyTabBarViewController/Classes/ExpandableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/StickyTabBarViewController/Classes/ExpandableViewController.swift -------------------------------------------------------------------------------- /StickyTabBarViewController/Classes/ExpandableViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/StickyTabBarViewController/Classes/ExpandableViewController.xib -------------------------------------------------------------------------------- /StickyTabBarViewController/Classes/StickyViewControllerSupportingTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/StickyTabBarViewController/Classes/StickyViewControllerSupportingTabBarController.swift -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emrepun/StickyTabBarViewController/HEAD/pull_request_template.md --------------------------------------------------------------------------------