[ iOS and Swift ]
Access the call site of a function using special Swift literals
Easily obtain information of where a Swift function was called from for use within the function itself.
Safely index items within a collection
How to use a Swift extension subscript and use it to safely get an item by index.
Managing secrets within an iOS app
Almost all iOS apps have API keys and other secrets, but simple approaches for managing them can be insecure. We will look at some different options for keeping secrets out of source control and accessing them securely from your code.
Sharing accessibility identifiers between app and tests
Avoid duplicating the accessibility ID strings between main and test sources in a Swift project.
Protocol function that returns the Self type
How to add functions to your Swift protocols that use the current type as their return type.