Skip to main content

Whatever you are coding - code clarity is your goal.

Before you scream and run out the door, I'm not going to reinvent the wheel!  A couple of style guides on GitHub are great way to start...  github - swift-style-guide (however not maintained) and raywenderlich - swift-style-guide.  Swift team at Apple have API Design Guidelines on how to write better Swift code.

Related articles

Andrew Fletcher16 Aug 2018
Creating a .pem file for push notifications
To create a .pem file, is quick once you have your .p12 certificate.  I won't go through the process regarding p12 file generation as there are many sites that outline these steps.  If you cannot find a site that outlines this make a comment below and I'll point in the right...
Andrew Fletcher15 Aug 2018
Filtering an array list
I had the issue where I needed to filter an array list by a specific column.  In my instance, the column is language.  To be able to reduce the query to the language column the code required is levels = selectedCategory?.levels.filter("language = %@", language) Language can be any...