Self-learning Swift (1): Struct vs Class
The main difference between struct and class in the type, both of them are used to create object in Swift. Struct is a value type, it will create a copy of the object and Class is a reference type, it will create a pointer to the object.
Class - refe...
sunbathsoft.com2 min read