Slide 7
Slide 7 text
PROTOCOL-ORIENTED PROGRAMMING IN SWIFT
Value Types
- “a type whose value is copied when it is assigned to a variable or
constant, or when it is passed to a function.”
Protocols
- “defines a blueprint of methods, properties, and other
requirements that suit a particular task or piece of functionality.”
- “can be adopted by a class, structure, or enumeration”
Extensions
- “add new functionality to an existing class, structure, enumeration,
or protocol type.”
7