├── .gitignore ├── Example.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Example ├── AppDelegate.swift ├── ArticleViewController.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── NavigationBar.swift ├── OpacityNavigationBarViewController.swift ├── PresentationController.swift ├── PresentingViewController.swift ├── ProfileViewController.swift ├── ViewController.swift ├── dribbble.png └── orange.png ├── Gif └── sample.gif ├── LICENSE ├── README.md ├── Union.podspec ├── Union.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Union.xcworkspace └── contents.xcworkspacedata ├── Union ├── Animation.swift ├── AnimationManager.swift ├── Info.plist ├── Navigator.swift ├── Presenter.swift ├── Union.h └── Union.swift └── UnionTests ├── AnimationManagerTests.swift ├── AnimationTests.swift └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ArticleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/ArticleViewController.swift -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/NavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/NavigationBar.swift -------------------------------------------------------------------------------- /Example/OpacityNavigationBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/OpacityNavigationBarViewController.swift -------------------------------------------------------------------------------- /Example/PresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/PresentationController.swift -------------------------------------------------------------------------------- /Example/PresentingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/PresentingViewController.swift -------------------------------------------------------------------------------- /Example/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/ProfileViewController.swift -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/dribbble.png -------------------------------------------------------------------------------- /Example/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Example/orange.png -------------------------------------------------------------------------------- /Gif/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Gif/sample.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/README.md -------------------------------------------------------------------------------- /Union.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union.podspec -------------------------------------------------------------------------------- /Union.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Union.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Union.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Union/Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/Animation.swift -------------------------------------------------------------------------------- /Union/AnimationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/AnimationManager.swift -------------------------------------------------------------------------------- /Union/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/Info.plist -------------------------------------------------------------------------------- /Union/Navigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/Navigator.swift -------------------------------------------------------------------------------- /Union/Presenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/Presenter.swift -------------------------------------------------------------------------------- /Union/Union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/Union.h -------------------------------------------------------------------------------- /Union/Union.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/Union/Union.swift -------------------------------------------------------------------------------- /UnionTests/AnimationManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/UnionTests/AnimationManagerTests.swift -------------------------------------------------------------------------------- /UnionTests/AnimationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/UnionTests/AnimationTests.swift -------------------------------------------------------------------------------- /UnionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirohisa/Union/HEAD/UnionTests/Info.plist --------------------------------------------------------------------------------