Swift language: Strings
What is string? String is an ordered collection of characters. Like NSString in objective C we have String type in swift and for characters we have character type. String is a combination of characters. You can create string as var myName = “iPhone Development” To initialize an empty string var myName = ” ” var […]
Swift language: Strings Read More »