Renaming a ViewController L2.4.1
Renaming a view controller takes three steps 1.) Change the name of the file in the navigator 2.) In the class declaration in the view controller »
Renaming a view controller takes three steps 1.) Change the name of the file in the navigator 2.) In the class declaration in the view controller »
Targets and Actions IBActions are used to connect UIElements to view controller code. In the case of a button it will link the pressing of the »
Constraints are what allow an element to be positioned in a certain place regardless of device or landscape/portrait mode You need a minimum of 2 »
Views A view (i.e. UIView subclass) represents a rectangular area. It defines a coordinate space for drawing and handling touch events. Hierarchical A view has »
Enums Primarily used for a collection with a finite set of values enum PrimaryColor { case red case blue case yellow } Each case does not need to »