├── Protocol-Oriented Swift 2.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── WladDicario.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── WladDicario.xcuserdatad │ └── xcschemes │ ├── Protocol-Oriented Swift 2.xcscheme │ └── xcschememanagement.plist ├── Protocol-Oriented Swift 2 ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── MainTableViewController.swift ├── PersonViewModel.swift └── SwitchInTextTableViewCell.swift ├── Protocol-Oriented Swift 2Tests ├── Info.plist └── Protocol_Oriented_Swift_2Tests.swift ├── Protocol-Oriented Swift 2UITests ├── Info.plist └── Protocol_Oriented_Swift_2UITests.swift └── README.md /Protocol-Oriented Swift 2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2.xcodeproj/project.xcworkspace/xcuserdata/WladDicario.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2.xcodeproj/project.xcworkspace/xcuserdata/WladDicario.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2.xcodeproj/xcuserdata/WladDicario.xcuserdatad/xcschemes/Protocol-Oriented Swift 2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2.xcodeproj/xcuserdata/WladDicario.xcuserdatad/xcschemes/Protocol-Oriented Swift 2.xcscheme -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2.xcodeproj/xcuserdata/WladDicario.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2.xcodeproj/xcuserdata/WladDicario.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/AppDelegate.swift -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/Info.plist -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/MainTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/MainTableViewController.swift -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/PersonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/PersonViewModel.swift -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2/SwitchInTextTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2/SwitchInTextTableViewCell.swift -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2Tests/Info.plist -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2Tests/Protocol_Oriented_Swift_2Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2Tests/Protocol_Oriented_Swift_2Tests.swift -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2UITests/Info.plist -------------------------------------------------------------------------------- /Protocol-Oriented Swift 2UITests/Protocol_Oriented_Swift_2UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/Protocol-Oriented Swift 2UITests/Protocol_Oriented_Swift_2UITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sweefties/Protocol-Oriented-Swift-2/HEAD/README.md --------------------------------------------------------------------------------