- Prefer
struct
s overclass
es wherever possible - Default to marking classes as
final
- Prefer protocol conformance to class inheritance
- Break long lines after 100 characters
- Use 2 spaces for indentation
- 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
- Group methods into specific extensions for each level of access control
- When capitalizing acronyms or initialisms, follow the capitalization of the first letter.
- When using
Void
in function signatures, prefer()
for arguments andVoid
for return types. - Prefer strong IBOutlet references.
- Avoid evaluating a weak reference multiple times in the same scope. Strongify first, then use the strong reference.
swift
Folders and files
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||