Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 413 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 413 Bytes

Swift

Sample

  • Keep up with the Objective-C style guide above. Will highlight differences here.
  • Use let whenever possible to make immutable variables
  • Name all parameters in functions and enum cases
  • Use trailing closures
  • Let the compiler infer the type whenever possible
  • Group computed properties below stored properties
  • Use a blank line above and below computed properties