├── .gitignore ├── Lectures ├── Lecture 1. Swift as programming language.pdf ├── Lecture 2. Touchy SDK.pdf ├── Lecture 3. View layer.pdf ├── Lecture 4. Controller.pdf ├── Lecture 5. Concurrency.pdf ├── Lecture 6. URL Loading System.pdf ├── Lecture 7. CoreData.pdf ├── Lecture 8. Architecture.pdf ├── Old Lecture 3. Architecture.pdf ├── Old Lecture 4. View layer.pdf ├── Old Lecture 5. Controller.pdf ├── Old Lecture 6. Concurrency.pdf ├── Old Lecture 7. URL Loading System.pdf └── Old Lecture 8. CoreData.pdf ├── Old. Lecture 4. Demo ├── lecture.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── lecture │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DrawView.swift │ ├── Info.plist │ ├── MyView.swift │ ├── MyView.xib │ ├── View2_frames.swift │ ├── ViewController1.swift │ ├── ViewController2.swift │ ├── ViewController3.swift │ ├── ViewController4_1.swift │ ├── ViewController4_2.swift │ ├── ViewController6.swift │ └── dress@2x.png ├── Old. Lecture 5. Demo ├── lecture5.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── lecture5 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MyCell.swift │ ├── MyCell.xib │ ├── MyTableViewController.swift │ ├── ViewController.swift │ ├── ViewController2_1.swift │ ├── ViewController2_2.swift │ └── ViewController3.swift ├── Old. Lecture 6. Demo ├── GCD.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata └── NSOperation.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ └── contents.xcworkspacedata ├── Old. Lecture 8. Demo ├── CoreDataSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CoreDataSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CarEntity+CoreDataClass.swift │ ├── CarEntity+CoreDataProperties.swift │ ├── CoreDataSample.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── CoreDataSample.xcdatamodel │ │ │ └── contents │ ├── DogEntity+CoreDataClass.swift │ ├── DogEntity+CoreDataProperties.swift │ ├── Info.plist │ ├── Model.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── Model.xcdatamodel │ │ │ └── contents │ │ └── Model2.xcdatamodel │ │ │ └── contents │ ├── PersonEntity+CoreDataClass.swift │ ├── PersonEntity+CoreDataProperties.swift │ └── ViewController.swift ├── CoreDataSampleTests │ ├── CoreDataSampleTests.swift │ └── Info.plist └── CoreDataSampleUITests │ ├── CoreDataSampleUITests.swift │ └── Info.plist └── Samples ├── InjectSample ├── InjectSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── InjectSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FileNotebook.swift │ ├── Info.plist │ ├── ViewController.swift │ └── ViewControllerFactory.swift ├── Lecture 3. View ├── Sample2.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Sample2 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── AutomaticView.swift │ ├── AutomaticView.xib │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ManualView.swift │ └── ViewController.swift ├── Lecture 4. Controllers ├── Sample4.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Sample4 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ContinerViewController.swift │ ├── CustomCell.swift │ ├── CustomCell.xib │ ├── Info.plist │ ├── TableViewController.swift │ └── ViewController.swift ├── Lecture 6. URL Loading System ├── app │ ├── urlsession-example-app.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── urlsession-example-app │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── AuthenticationExampleViewController.swift │ │ ├── BackgroundExampleViewController.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CacheExampleViewController.swift │ │ ├── GetExampleViewController.swift │ │ ├── Info.plist │ │ ├── MenuViewController.swift │ │ ├── PostExampleViewController.swift │ │ └── TimeoutsExampleViewController.swift └── server │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── apple.jpg │ └── apple2.jpg │ └── yarn.lock └── Lecture 7. CoreData ├── CoreDataSample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── CoreDataSample ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Car+CoreDataClass.swift ├── Car+CoreDataProperties.swift ├── CarsModel.xcdatamodeld └── CarsModel.xcdatamodel │ └── contents ├── Info.plist ├── Person+CoreDataClass.swift ├── Person+CoreDataProperties.swift └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | 3 | -------------------------------------------------------------------------------- /Lectures/Lecture 1. Swift as programming language.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 1. Swift as programming language.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 2. Touchy SDK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 2. Touchy SDK.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 3. View layer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 3. View layer.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 4. Controller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 4. Controller.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 5. Concurrency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 5. Concurrency.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 6. URL Loading System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 6. URL Loading System.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 7. CoreData.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 7. CoreData.pdf -------------------------------------------------------------------------------- /Lectures/Lecture 8. Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Lecture 8. Architecture.pdf -------------------------------------------------------------------------------- /Lectures/Old Lecture 3. Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Old Lecture 3. Architecture.pdf -------------------------------------------------------------------------------- /Lectures/Old Lecture 4. View layer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Old Lecture 4. View layer.pdf -------------------------------------------------------------------------------- /Lectures/Old Lecture 5. Controller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Old Lecture 5. Controller.pdf -------------------------------------------------------------------------------- /Lectures/Old Lecture 6. Concurrency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Old Lecture 6. Concurrency.pdf -------------------------------------------------------------------------------- /Lectures/Old Lecture 7. URL Loading System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Old Lecture 7. URL Loading System.pdf -------------------------------------------------------------------------------- /Lectures/Old Lecture 8. CoreData.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Lectures/Old Lecture 8. CoreData.pdf -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/AppDelegate.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/DrawView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/DrawView.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/Info.plist -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/MyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/MyView.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/MyView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/MyView.xib -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/View2_frames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/View2_frames.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/ViewController1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/ViewController1.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/ViewController2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/ViewController2.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/ViewController3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/ViewController3.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/ViewController4_1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/ViewController4_1.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/ViewController4_2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/ViewController4_2.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/ViewController6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/ViewController6.swift -------------------------------------------------------------------------------- /Old. Lecture 4. Demo/lecture/dress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 4. Demo/lecture/dress@2x.png -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/AppDelegate.swift -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/Info.plist -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/MyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/MyCell.swift -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/MyCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/MyCell.xib -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/MyTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/MyTableViewController.swift -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/ViewController.swift -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/ViewController2_1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/ViewController2_1.swift -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/ViewController2_2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/ViewController2_2.swift -------------------------------------------------------------------------------- /Old. Lecture 5. Demo/lecture5/ViewController3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 5. Demo/lecture5/ViewController3.swift -------------------------------------------------------------------------------- /Old. Lecture 6. Demo/GCD.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 6. Demo/GCD.playground/Contents.swift -------------------------------------------------------------------------------- /Old. Lecture 6. Demo/GCD.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 6. Demo/GCD.playground/contents.xcplayground -------------------------------------------------------------------------------- /Old. Lecture 6. Demo/GCD.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 6. Demo/GCD.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Old. Lecture 6. Demo/NSOperation.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 6. Demo/NSOperation.playground/Contents.swift -------------------------------------------------------------------------------- /Old. Lecture 6. Demo/NSOperation.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 6. Demo/NSOperation.playground/contents.xcplayground -------------------------------------------------------------------------------- /Old. Lecture 6. Demo/NSOperation.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 6. Demo/NSOperation.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/AppDelegate.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/CarEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/CarEntity+CoreDataClass.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/CarEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/CarEntity+CoreDataProperties.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/CoreDataSample.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/CoreDataSample.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/CoreDataSample.xcdatamodeld/CoreDataSample.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/CoreDataSample.xcdatamodeld/CoreDataSample.xcdatamodel/contents -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/DogEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/DogEntity+CoreDataClass.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/DogEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/DogEntity+CoreDataProperties.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Info.plist -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Model.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Model.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/Model.xcdatamodeld/Model2.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/Model.xcdatamodeld/Model2.xcdatamodel/contents -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/PersonEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/PersonEntity+CoreDataClass.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/PersonEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/PersonEntity+CoreDataProperties.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSample/ViewController.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSampleTests/CoreDataSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSampleTests/CoreDataSampleTests.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSampleTests/Info.plist -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSampleUITests/CoreDataSampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSampleUITests/CoreDataSampleUITests.swift -------------------------------------------------------------------------------- /Old. Lecture 8. Demo/CoreDataSampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Old. Lecture 8. Demo/CoreDataSampleUITests/Info.plist -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/AppDelegate.swift -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/FileNotebook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/FileNotebook.swift -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/Info.plist -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/ViewController.swift -------------------------------------------------------------------------------- /Samples/InjectSample/InjectSample/ViewControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/InjectSample/InjectSample/ViewControllerFactory.swift -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/AppDelegate.swift -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/AutomaticView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/AutomaticView.swift -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/AutomaticView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/AutomaticView.xib -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/Info.plist -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/ManualView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/ManualView.swift -------------------------------------------------------------------------------- /Samples/Lecture 3. View/Sample2/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 3. View/Sample2/ViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/AppDelegate.swift -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/ContinerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/ContinerViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/CustomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/CustomCell.swift -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/CustomCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/CustomCell.xib -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/Info.plist -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/TableViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 4. Controllers/Sample4/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 4. Controllers/Sample4/ViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/AppDelegate.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/AuthenticationExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/AuthenticationExampleViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/BackgroundExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/BackgroundExampleViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/CacheExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/CacheExampleViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/GetExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/GetExampleViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/Info.plist -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/MenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/MenuViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/PostExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/PostExampleViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/app/urlsession-example-app/TimeoutsExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/app/urlsession-example-app/TimeoutsExampleViewController.swift -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/README.md -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/index.js -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/package-lock.json -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/package.json -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/public/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/public/apple.jpg -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/public/apple2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/public/apple2.jpg -------------------------------------------------------------------------------- /Samples/Lecture 6. URL Loading System/server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 6. URL Loading System/server/yarn.lock -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/AppDelegate.swift -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Car+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Car+CoreDataClass.swift -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Car+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Car+CoreDataProperties.swift -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/CarsModel.xcdatamodeld/CarsModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/CarsModel.xcdatamodeld/CarsModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Info.plist -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Person+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Person+CoreDataClass.swift -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/Person+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/Person+CoreDataProperties.swift -------------------------------------------------------------------------------- /Samples/Lecture 7. CoreData/CoreDataSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrdekk/ios_course2/HEAD/Samples/Lecture 7. CoreData/CoreDataSample/ViewController.swift --------------------------------------------------------------------------------