First view of iOS tutorial in Swift (an Android Developer view)

It’s 2018, why not try something new for myself? So I get myself following official iOS Swift tutorial. Faced some hurdles and shared it here.

If you are new to iOS development and like to start using it following official iOS Swift tutorial. This article might be handy to check out first.

The most important command

If you have to remember one most important command as your last resort facing issue in the tutorial…

If you’re running into build issues, try pressing Command-Shift-K to clean your project.

It’s like gradle clean your project. The project could get corrupted at times, and behave weirdly. So such cleaning might help and magically resolve your problem.

This important note only comes in the middle of the tutorial, but I face a weird problem much earlier. Spending days before knowing it’s not my problem, but the tools issue. So Shirt-K and quit and restart would be handy to try.

It’s like the gradle project clean of Android. Very useful when one is confused on some weird issue i.e. Resource can’t be found :P

Revision control of the project

--

--