
How to rename an Xcode project
Renaming a project can be a common task. You could start with a name for your project and then during the development process you decide that you want to rename the project. Unfortunately
A collection of 8 posts
Renaming a project can be a common task. You could start with a name for your project and then during the development process you decide that you want to rename the project. Unfortunately
In some situations one might want to convert an array of strings to a string. There are a few ways to do this, all are quick and easy but for most use cases
This is one of those annoying default behaviours that iOS has. Below is a one liner that will help you remove the cell highlighting. To remove the table view cell highlight/selection color
In this tutorial I will show you how to add text fields to a UIAlertController using Swift. This is one of those tasks that is surprisingly simple as it is built into UIAlertController.
Checking if a string contains a substring in Swift is very easy. Strings in Swift have a built in method called contains. This method with allow us to check if a string contains
Xcode can often do some strange things that causes build problems etc. One of the go to methods to try and fix these issues is to delete derived data. In this tutorial, I