2014

The Comprehensive
Guide To Swift

One of the first courses ever created on the Swift programming language released the same year as the language it self. This course is now outdated but I will include it here as a free reference and resource for posterity.

Basics


 

Operators


13. Assignment Operator

14 . Arithmetic Operators

15. More Arithmetic Operators

16. Operator Precedence

17. Unary Operators

18. Compound Assignment Operator

 

Collections


19. Arrays

20. Append to Arrays

21. Updating Arrays

22. Dictionaries

23. Working with Dictionaries

 

Control Flow


24. Logic - AND

25. Logic - OR

26. Logic - NOT

27. Logic - EQUIVALENCE

28. Logic - COMPARATIVE

29. If/Else Statement

30. Use If/Else for Variable Assignment

31. Else If

32. Nested If

33. Switch

34. While

35. Do While

36. For Loop

37. For Loop Adaptive

38. For In Loop

 

Functions


39. Functions

40. Scope

41. Parameters

42. Return

43. Custom Parameters

44. Tuples

45. Working with Tuples

 

Optionals


46. Optionals

47. Optionals Example

48. Unwrap Optionals

 

Enumerations


49. Enums

50. Working with Enums

51. Raw Value

52. Using Raw Values in Functions

53. Associate Values

54. Working with Associated Value

55. Enum Methods

56. Enum Initialization

 

Structures


57. Structs

58. Struct Instances

59. Default Values

60. Struct Initializer

61. Struct Methods

 

Classes


62. Classes

63. Designated Initializer

64. Class Methods

65. Class Inheritance

66. Overriding Functions

67. Initializer Overriding

68. Convenience Initializer

69. Computed Properties

70. Get & Set

71. Optional Properties

72. Value vs. Reference