├── C01 Swift └── Scrape ├── C02 Printing and Mirroring ├── Chapter2 │ ├── Chapter2.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── ericasadun.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── ericasadun.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── Chapter2.xcscheme │ │ │ └── xcschememanagement.plist │ └── Chapter2 │ │ ├── .DS_Store │ │ ├── 01 - Basic Printing.swift │ │ ├── 02 - String Printing.swift │ │ ├── 03 - Output Stream Examples.swift │ │ ├── 04 - Debug Printing Examples.swift │ │ ├── 05 - Quick Look Support.swift │ │ ├── 05 - Quick Look.swift │ │ ├── 06 - Dump and Mirror.swift │ │ ├── Recipes.swift │ │ └── main.swift └── QuickLook.playground.zip ├── C03 Optionals └── Chapter 3.playground.zip ├── C04 Closures └── Closures.playground.zip ├── C05 Generics └── Generics.playground.zip ├── C06 Errors ├── Errors.playground.zip └── SystemExample │ ├── SystemExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── ericasadun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ericasadun.xcuserdatad │ │ └── xcschemes │ │ ├── SystemExample.xcscheme │ │ └── xcschememanagement.plist │ └── SystemExample │ └── main.swift ├── C07 Types └── Types.playground.zip ├── C08 Miscellany Samples └── Miscellany.playground.zip ├── README.md └── do-git /C01 Swift/Scrape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C01 Swift/Scrape -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/project.xcworkspace/xcuserdata/ericasadun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/project.xcworkspace/xcuserdata/ericasadun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/Chapter2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/Chapter2.xcscheme -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/.DS_Store -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/01 - Basic Printing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/01 - Basic Printing.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/02 - String Printing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/02 - String Printing.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/03 - Output Stream Examples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/03 - Output Stream Examples.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/04 - Debug Printing Examples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/04 - Debug Printing Examples.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/05 - Quick Look Support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/05 - Quick Look Support.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/05 - Quick Look.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/05 - Quick Look.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/06 - Dump and Mirror.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/06 - Dump and Mirror.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/Recipes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/Recipes.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/Chapter2/Chapter2/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/Chapter2/Chapter2/main.swift -------------------------------------------------------------------------------- /C02 Printing and Mirroring/QuickLook.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C02 Printing and Mirroring/QuickLook.playground.zip -------------------------------------------------------------------------------- /C03 Optionals/Chapter 3.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C03 Optionals/Chapter 3.playground.zip -------------------------------------------------------------------------------- /C04 Closures/Closures.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C04 Closures/Closures.playground.zip -------------------------------------------------------------------------------- /C05 Generics/Generics.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C05 Generics/Generics.playground.zip -------------------------------------------------------------------------------- /C06 Errors/Errors.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/Errors.playground.zip -------------------------------------------------------------------------------- /C06 Errors/SystemExample/SystemExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/SystemExample/SystemExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /C06 Errors/SystemExample/SystemExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/SystemExample/SystemExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /C06 Errors/SystemExample/SystemExample.xcodeproj/project.xcworkspace/xcuserdata/ericasadun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/SystemExample/SystemExample.xcodeproj/project.xcworkspace/xcuserdata/ericasadun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /C06 Errors/SystemExample/SystemExample.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/SystemExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/SystemExample/SystemExample.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/SystemExample.xcscheme -------------------------------------------------------------------------------- /C06 Errors/SystemExample/SystemExample.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/SystemExample/SystemExample.xcodeproj/xcuserdata/ericasadun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /C06 Errors/SystemExample/SystemExample/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C06 Errors/SystemExample/SystemExample/main.swift -------------------------------------------------------------------------------- /C07 Types/Types.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C07 Types/Types.playground.zip -------------------------------------------------------------------------------- /C08 Miscellany Samples/Miscellany.playground.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/C08 Miscellany Samples/Miscellany.playground.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /do-git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erica/SwiftCookbook/HEAD/do-git --------------------------------------------------------------------------------