├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── Example ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── ChildViewController.swift ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ListViewController.swift ├── ParentViewController.swift ├── SliderViewController.swift └── ViewController.swift ├── LICENSE ├── README.md ├── SegueContext.podspec ├── SegueContext.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Example.xcscheme │ └── SegueContext.xcscheme ├── SegueContext ├── Info.plist ├── SegueContext.h └── Source │ └── SegueContext.swift ├── Tests ├── Info.plist └── Tests.swift └── images └── sample.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ChildViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/ChildViewController.swift -------------------------------------------------------------------------------- /Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/ListViewController.swift -------------------------------------------------------------------------------- /Example/ParentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/ParentViewController.swift -------------------------------------------------------------------------------- /Example/SliderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/SliderViewController.swift -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/README.md -------------------------------------------------------------------------------- /SegueContext.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext.podspec -------------------------------------------------------------------------------- /SegueContext.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SegueContext.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SegueContext.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SegueContext.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /SegueContext.xcodeproj/xcshareddata/xcschemes/SegueContext.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext.xcodeproj/xcshareddata/xcschemes/SegueContext.xcscheme -------------------------------------------------------------------------------- /SegueContext/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext/Info.plist -------------------------------------------------------------------------------- /SegueContext/SegueContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext/SegueContext.h -------------------------------------------------------------------------------- /SegueContext/Source/SegueContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/SegueContext/Source/SegueContext.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/Tests/Tests.swift -------------------------------------------------------------------------------- /images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokorom/SegueContext/HEAD/images/sample.png --------------------------------------------------------------------------------