Development Articles, Tutorials & More

Swift string interpolation | Swift Quick Tips

Difficulty: Beginner | Easy | Normal | Advanced Related topics in the series: What is Swift String Interpolation? Swift String Interpolation allows you to insert values, variables, and expressions into string literals. It makes your code more readable and concise by eliminating the need …

Swift String to Int | Swift Quick Tips

Difficulty: Beginner | Easy | Normal | Advanced There are times as an iOS developer when you will need to turn a Swift String to an Integer. Converting from a String to Int is extremely straightforward, nonetheless, it requires careful handling.  Related …

Self Vs. self – What is the difference in Swift

Difficulty: Beginner | Easy | Normal | Advanced If you’ve embarked on your iOS development journey or recently found yourself in the midst of an iOS job interview, you’ve probably encountered the age-old question: What’s the difference between ‘Self’ and ‘self’? This …