Swift in Depth
An in-depth look at Apple's Swift (2.0) language for programmers already familiar with an OO language. No knowledge of any other Apple technology is required.
What you'll learn
This course introduces Apple's Swift programming language in considerable technical depth, focusing on those parts of the language that you will find new or unfamiliar. Swift is Apple's preferred programming language, and is a vastly better alternative to Objective-C. Learning it is an essential first step to working effectively on the Apple platform. This course is geared to working programmers---prior experience with an OO language is required. You don't need to know anything about the Apple ecosystem, however: this is a language course, not an iOS or OSX programming course. This course covers the most recent version of Swift (2.0).
Table of contents
- Set up Xcode And Create Employee 5m
- String Interpolation: CustomStringConvertible, \(x) 3m
- Operator Overloads: Equatable, Comparable, == 5m
- Using Your Classes as Dictionary Keys: Hashable 2m
- Initializing with an =: IntegerLiteralConvertible 3m
- Subscripts and Ranges 3m
- Regular Expressions: Wrapping NSRegularExpression 3m
- Initializing with an ='string': StringLiteralConvertible 2m
- Using Your Class In a case Statement 2m
- Inventing Operators: prefix, infix 5m
- Priority Queues: How They Work 5m
- Appending to a Priority Queue 4m
- Removing From a Priority Queue 2m
- Simplify Append 1m
- ArrayLiteralConvertible 2m
- DictionaryLiteralConvertible 2m
- Sequences (Iterators): for/in Integration 6m