├── .gitignore ├── .gitmodules ├── AdvancedGraphics ├── AdvancedGraphics.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── AdvancedGraphics │ ├── AnimationDemoViewController.h │ ├── AnimationDemoViewController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── lombard.imageset │ │ ├── Contents.json │ │ └── lombard.jpg │ └── snowflake.imageset │ │ ├── Contents.json │ │ └── snowflake.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ExpandingImageViewController.h │ ├── ExpandingImageViewController.m │ ├── ImplicitAnimationViewController.h │ ├── ImplicitAnimationViewController.m │ ├── Info.plist │ ├── LayerWalkthroughViewController.h │ ├── LayerWalkthroughViewController.m │ ├── SnowViewController.h │ ├── SnowViewController.m │ ├── StutteringViewController.h │ ├── StutteringViewController.m │ ├── lombard.jpg │ ├── main.m │ ├── yosemite-optimized.png │ └── yosemite.jpg ├── Class-1 ├── files │ ├── Cartfile │ └── Podfile └── snippets │ └── url_request.swift ├── Class-3 └── PerformanceDemo │ ├── PerformanceDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── PerformanceDemo.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ └── PerformanceDemo.xcscheme │ ├── PerformanceDemo │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── FibonacciEntry.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── LeakyViewController.swift │ ├── SawToothViewController.swift │ └── SlowScrollingTableViewController.swift │ └── PerformanceDemoTests │ ├── Info.plist │ └── PerformanceDemoTests.swift ├── Class-4 └── snippets │ └── containment.swift ├── Class-5 ├── AppearanceDemo │ ├── AppearanceDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── AppearanceDemo.xccheckout │ ├── AppearanceDemo │ │ ├── AppDelegate.swift │ │ ├── AppearanceDemo-Bridging-Header.h │ │ ├── AppearanceDemoObjcShim.h │ │ ├── AppearanceDemoObjcShim.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── MyCustomView.swift │ │ ├── UIButton+AppearanceDemo.swift │ │ ├── UIFont+AppearanceDemo.swift │ │ └── ViewController.swift │ └── AppearanceDemoTests │ │ ├── AppearanceDemoTests.swift │ │ └── Info.plist ├── Drawing │ └── DrawingPlayground.playground │ │ ├── Resources │ │ └── avatar.png │ │ ├── contents.xcplayground │ │ └── section-1.swift ├── ResponderDemo │ ├── ResponderDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── ResponderDemo.xccheckout │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ResponderDemo.xcscheme │ ├── ResponderDemo │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── CopyPasteViewController.swift │ │ ├── CustomInputViewController.swift │ │ ├── HitTestViewController.swift │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── PhoneInputTextLabel.swift │ └── ResponderDemoTests │ │ ├── Info.plist │ │ └── ResponderDemoTests.swift └── ViewControllerTransitionDemo │ ├── ViewControllerTransitionDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── ViewControllerTransitionDemo.xccheckout │ ├── ViewControllerTransitionDemo │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ListViewController.swift │ └── ViewControllerTransitionDemoTests │ ├── Info.plist │ └── ViewControllerTransitionDemoTests.swift ├── Class-6 ├── PeristenceDemo │ ├── PeristenceDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── PeristenceDemo.xccheckout │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── PeristenceDemo.xcscheme │ └── PeristenceDemo │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Model.xcdatamodeld │ │ └── Model.xcdatamodel │ │ │ └── contents │ │ ├── TodoItem.swift │ │ ├── TodoItemTableViewCell.swift │ │ └── TodoListTableViewController.swift └── SystemFrameworksDemo │ ├── .gitignore │ ├── SystemFrameworksDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SystemFrameworksDemo.xcscheme │ ├── SystemFrameworksDemo │ ├── AddressBookViewController.swift │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── LocalAuthenticationViewController.swift │ ├── LocationViewController.swift │ ├── MotionViewController.swift │ ├── PhotosViewController.swift │ └── ViewController.swift │ └── SystemFrameworksDemoTests │ ├── Info.plist │ └── SystemFrameworksDemoTests.swift ├── Class-7 ├── DealWithIt │ ├── DealWithIt.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── DealWithIt.xcscheme │ └── DealWithIt │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── sunglasses.imageset │ │ │ ├── Contents.json │ │ │ └── noun_150247.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DealWithItGenerator.swift │ │ ├── Info.plist │ │ └── ViewController.swift ├── FlashCard │ ├── FlashCard.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FlashCard.xcscheme │ └── FlashCard │ │ ├── Answer.swift │ │ ├── AnswerViewController.storyboard │ │ ├── AnswerViewController.swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Question.swift │ │ ├── QuestionViewController.storyboard │ │ ├── QuestionViewController.swift │ │ └── VerticalSplitViewController.swift ├── FontBrowserDemo │ ├── FontBrowserDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FontBrowserDemo.xcscheme │ └── FontBrowserDemo │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DetailViewController.swift │ │ ├── FontSettingsViewController.storyboard │ │ ├── FontSettingsViewController.swift │ │ ├── GlobalSettingsViewController.swift │ │ ├── Info.plist │ │ ├── MasterViewController.swift │ │ └── RootViewController.swift ├── StackDemo │ ├── StackDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── StackDemo.xcscheme │ └── StackDemo │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift └── assets │ ├── earn-iphone.png │ ├── eart-ipad.png │ ├── moon-ipad.png │ ├── moon-iphone.png │ ├── saturn-ipad.png │ └── saturn-iphone.png ├── Class-8 └── HolidayCheck │ ├── HolidayCheck.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── HolidayCheck.xcscheme │ ├── HolidayCheck │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ChristmasHoliday.swift │ ├── Holiday.swift │ ├── HolidayCheckable.swift │ ├── HolidayChecker.swift │ ├── HolidayCheckerPickerController.storyboard │ ├── HolidayCheckerPickerController.swift │ ├── HolidayPreferenceStore.swift │ ├── HolidayPreferences.swift │ ├── Info.plist │ ├── NewYearsHoliday.swift │ └── StatusViewController.swift │ └── HolidayCheckTests │ ├── ChristmasTest.swift │ ├── HolidayCheckTests.swift │ └── Info.plist ├── README.md └── image_assets └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/.gitmodules -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/AnimationDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/AnimationDemoViewController.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/AnimationDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/AnimationDemoViewController.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/AppDelegate.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/AppDelegate.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Assets.xcassets/lombard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Assets.xcassets/lombard.imageset/Contents.json -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Assets.xcassets/lombard.imageset/lombard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Assets.xcassets/lombard.imageset/lombard.jpg -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Assets.xcassets/snowflake.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Assets.xcassets/snowflake.imageset/Contents.json -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Assets.xcassets/snowflake.imageset/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Assets.xcassets/snowflake.imageset/snowflake.png -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/ExpandingImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/ExpandingImageViewController.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/ExpandingImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/ExpandingImageViewController.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/ImplicitAnimationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/ImplicitAnimationViewController.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/ImplicitAnimationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/ImplicitAnimationViewController.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/Info.plist -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/LayerWalkthroughViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/LayerWalkthroughViewController.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/LayerWalkthroughViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/LayerWalkthroughViewController.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/SnowViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/SnowViewController.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/SnowViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/SnowViewController.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/StutteringViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/StutteringViewController.h -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/StutteringViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/StutteringViewController.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/lombard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/lombard.jpg -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/main.m -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/yosemite-optimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/yosemite-optimized.png -------------------------------------------------------------------------------- /AdvancedGraphics/AdvancedGraphics/yosemite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/AdvancedGraphics/AdvancedGraphics/yosemite.jpg -------------------------------------------------------------------------------- /Class-1/files/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-1/files/Cartfile -------------------------------------------------------------------------------- /Class-1/files/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-1/files/Podfile -------------------------------------------------------------------------------- /Class-1/snippets/url_request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-1/snippets/url_request.swift -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/project.xcworkspace/xcshareddata/PerformanceDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/project.xcworkspace/xcshareddata/PerformanceDemo.xccheckout -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/xcshareddata/xcschemes/PerformanceDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo.xcodeproj/xcshareddata/xcschemes/PerformanceDemo.xcscheme -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/FibonacciEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/FibonacciEntry.swift -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/Info.plist -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/LeakyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/LeakyViewController.swift -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/SawToothViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/SawToothViewController.swift -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemo/SlowScrollingTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemo/SlowScrollingTableViewController.swift -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemoTests/Info.plist -------------------------------------------------------------------------------- /Class-3/PerformanceDemo/PerformanceDemoTests/PerformanceDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-3/PerformanceDemo/PerformanceDemoTests/PerformanceDemoTests.swift -------------------------------------------------------------------------------- /Class-4/snippets/containment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-4/snippets/containment.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo.xcodeproj/project.xcworkspace/xcshareddata/AppearanceDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo.xcodeproj/project.xcworkspace/xcshareddata/AppearanceDemo.xccheckout -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/AppearanceDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/AppearanceDemo-Bridging-Header.h -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/AppearanceDemoObjcShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/AppearanceDemoObjcShim.h -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/AppearanceDemoObjcShim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/AppearanceDemoObjcShim.m -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/Info.plist -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/MyCustomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/MyCustomView.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/UIButton+AppearanceDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/UIButton+AppearanceDemo.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/UIFont+AppearanceDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/UIFont+AppearanceDemo.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemo/ViewController.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemoTests/AppearanceDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemoTests/AppearanceDemoTests.swift -------------------------------------------------------------------------------- /Class-5/AppearanceDemo/AppearanceDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/AppearanceDemo/AppearanceDemoTests/Info.plist -------------------------------------------------------------------------------- /Class-5/Drawing/DrawingPlayground.playground/Resources/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/Drawing/DrawingPlayground.playground/Resources/avatar.png -------------------------------------------------------------------------------- /Class-5/Drawing/DrawingPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/Drawing/DrawingPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Class-5/Drawing/DrawingPlayground.playground/section-1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/Drawing/DrawingPlayground.playground/section-1.swift -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo.xcodeproj/project.xcworkspace/xcshareddata/ResponderDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo.xcodeproj/project.xcworkspace/xcshareddata/ResponderDemo.xccheckout -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo.xcodeproj/xcshareddata/xcschemes/ResponderDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo.xcodeproj/xcshareddata/xcschemes/ResponderDemo.xcscheme -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/CopyPasteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/CopyPasteViewController.swift -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/CustomInputViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/CustomInputViewController.swift -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/HitTestViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/HitTestViewController.swift -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/Info.plist -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemo/PhoneInputTextLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemo/PhoneInputTextLabel.swift -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemoTests/Info.plist -------------------------------------------------------------------------------- /Class-5/ResponderDemo/ResponderDemoTests/ResponderDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ResponderDemo/ResponderDemoTests/ResponderDemoTests.swift -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo.xcodeproj/project.xcworkspace/xcshareddata/ViewControllerTransitionDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo.xcodeproj/project.xcworkspace/xcshareddata/ViewControllerTransitionDemo.xccheckout -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/DetailViewController.swift -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/Info.plist -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemo/ListViewController.swift -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemoTests/Info.plist -------------------------------------------------------------------------------- /Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemoTests/ViewControllerTransitionDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-5/ViewControllerTransitionDemo/ViewControllerTransitionDemoTests/ViewControllerTransitionDemoTests.swift -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/project.xcworkspace/xcshareddata/PeristenceDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/project.xcworkspace/xcshareddata/PeristenceDemo.xccheckout -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/xcshareddata/xcschemes/PeristenceDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo.xcodeproj/xcshareddata/xcschemes/PeristenceDemo.xcscheme -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/Info.plist -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/TodoItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/TodoItem.swift -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/TodoItemTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/TodoItemTableViewCell.swift -------------------------------------------------------------------------------- /Class-6/PeristenceDemo/PeristenceDemo/TodoListTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/PeristenceDemo/PeristenceDemo/TodoListTableViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo.xcodeproj/xcshareddata/xcschemes/SystemFrameworksDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo.xcodeproj/xcshareddata/xcschemes/SystemFrameworksDemo.xcscheme -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/AddressBookViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/AddressBookViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/Info.plist -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/LocalAuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/LocalAuthenticationViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/LocationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/LocationViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/MotionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/MotionViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/PhotosViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/PhotosViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemo/ViewController.swift -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemoTests/Info.plist -------------------------------------------------------------------------------- /Class-6/SystemFrameworksDemo/SystemFrameworksDemoTests/SystemFrameworksDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-6/SystemFrameworksDemo/SystemFrameworksDemoTests/SystemFrameworksDemoTests.swift -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt.xcodeproj/xcshareddata/xcschemes/DealWithIt.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt.xcodeproj/xcshareddata/xcschemes/DealWithIt.xcscheme -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/AppDelegate.swift -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Assets.xcassets/sunglasses.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Assets.xcassets/sunglasses.imageset/Contents.json -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Assets.xcassets/sunglasses.imageset/noun_150247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Assets.xcassets/sunglasses.imageset/noun_150247.png -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/DealWithItGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/DealWithItGenerator.swift -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/Info.plist -------------------------------------------------------------------------------- /Class-7/DealWithIt/DealWithIt/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/DealWithIt/DealWithIt/ViewController.swift -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard.xcodeproj/xcshareddata/xcschemes/FlashCard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard.xcodeproj/xcshareddata/xcschemes/FlashCard.xcscheme -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/Answer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/Answer.swift -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/AnswerViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/AnswerViewController.storyboard -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/AnswerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/AnswerViewController.swift -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/AppDelegate.swift -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/Info.plist -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/Question.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/Question.swift -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/QuestionViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/QuestionViewController.storyboard -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/QuestionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/QuestionViewController.swift -------------------------------------------------------------------------------- /Class-7/FlashCard/FlashCard/VerticalSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FlashCard/FlashCard/VerticalSplitViewController.swift -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo.xcodeproj/xcshareddata/xcschemes/FontBrowserDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo.xcodeproj/xcshareddata/xcschemes/FontBrowserDemo.xcscheme -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/DetailViewController.swift -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/FontSettingsViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/FontSettingsViewController.storyboard -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/FontSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/FontSettingsViewController.swift -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/GlobalSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/GlobalSettingsViewController.swift -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/Info.plist -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/MasterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/MasterViewController.swift -------------------------------------------------------------------------------- /Class-7/FontBrowserDemo/FontBrowserDemo/RootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/FontBrowserDemo/FontBrowserDemo/RootViewController.swift -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo.xcodeproj/xcshareddata/xcschemes/StackDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo.xcodeproj/xcshareddata/xcschemes/StackDemo.xcscheme -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/Info.plist -------------------------------------------------------------------------------- /Class-7/StackDemo/StackDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/StackDemo/StackDemo/ViewController.swift -------------------------------------------------------------------------------- /Class-7/assets/earn-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/assets/earn-iphone.png -------------------------------------------------------------------------------- /Class-7/assets/eart-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/assets/eart-ipad.png -------------------------------------------------------------------------------- /Class-7/assets/moon-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/assets/moon-ipad.png -------------------------------------------------------------------------------- /Class-7/assets/moon-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/assets/moon-iphone.png -------------------------------------------------------------------------------- /Class-7/assets/saturn-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/assets/saturn-ipad.png -------------------------------------------------------------------------------- /Class-7/assets/saturn-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-7/assets/saturn-iphone.png -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck.xcodeproj/xcshareddata/xcschemes/HolidayCheck.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck.xcodeproj/xcshareddata/xcschemes/HolidayCheck.xcscheme -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/AppDelegate.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/ChristmasHoliday.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/ChristmasHoliday.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/Holiday.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/Holiday.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/HolidayCheckable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/HolidayCheckable.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/HolidayChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/HolidayChecker.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/HolidayCheckerPickerController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/HolidayCheckerPickerController.storyboard -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/HolidayCheckerPickerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/HolidayCheckerPickerController.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/HolidayPreferenceStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/HolidayPreferenceStore.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/HolidayPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/HolidayPreferences.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/Info.plist -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/NewYearsHoliday.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/NewYearsHoliday.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheck/StatusViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheck/StatusViewController.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheckTests/ChristmasTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheckTests/ChristmasTest.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheckTests/HolidayCheckTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheckTests/HolidayCheckTests.swift -------------------------------------------------------------------------------- /Class-8/HolidayCheck/HolidayCheckTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/Class-8/HolidayCheck/HolidayCheckTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/ios_guides/HEAD/README.md -------------------------------------------------------------------------------- /image_assets/README.md: -------------------------------------------------------------------------------- 1 | ## iOS Guides - Image Assets 2 | --------------------------------------------------------------------------------