├── .travis.yml ├── CustomSegues.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── CustomSegues.xccheckout ├── xcshareddata │ └── xcschemes │ │ └── CustomSegues.xcscheme └── xcuserdata │ └── williamarchimede.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── CustomSegues ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── CustomSegue.swift ├── FirstViewController.swift ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json └── Info.plist ├── CustomSeguesTests ├── CustomSeguesTests.swift └── Info.plist ├── LICENSE └── README.md /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/.travis.yml -------------------------------------------------------------------------------- /CustomSegues.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomSegues.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomSegues.xcodeproj/project.xcworkspace/xcshareddata/CustomSegues.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues.xcodeproj/project.xcworkspace/xcshareddata/CustomSegues.xccheckout -------------------------------------------------------------------------------- /CustomSegues.xcodeproj/xcshareddata/xcschemes/CustomSegues.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues.xcodeproj/xcshareddata/xcschemes/CustomSegues.xcscheme -------------------------------------------------------------------------------- /CustomSegues.xcodeproj/xcuserdata/williamarchimede.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues.xcodeproj/xcuserdata/williamarchimede.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CustomSegues.xcodeproj/xcuserdata/williamarchimede.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues.xcodeproj/xcuserdata/williamarchimede.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CustomSegues/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/AppDelegate.swift -------------------------------------------------------------------------------- /CustomSegues/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CustomSegues/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomSegues/CustomSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/CustomSegue.swift -------------------------------------------------------------------------------- /CustomSegues/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/FirstViewController.swift -------------------------------------------------------------------------------- /CustomSegues/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomSegues/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSegues/Info.plist -------------------------------------------------------------------------------- /CustomSeguesTests/CustomSeguesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSeguesTests/CustomSeguesTests.swift -------------------------------------------------------------------------------- /CustomSeguesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/CustomSeguesTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warchimede/CustomSegues/HEAD/README.md --------------------------------------------------------------------------------