Type casting in Swift can be little confusing at times. Especially with those syntaxes such as as as? as!. Let’s learn how to type caste between different type of objects in this video lesson. If you like this video lesson please make sure to subscribe to my channel as I’m planning more video tutorials in […]
Swift : Unwrapping Like a Boss
In order to understand this article, you should have a clear idea of Optionals. If you don’t know what is Optionals in Swift then please read my article on the same topic and come back here. Simple Unwrapping let name : String? = "Jay" if let myName = name {<br /> print(myName) } As […]