
iOS 15 Programming for Beginners
By :

All programming languages can store numbers, logic states, and words, and Swift is no different. Even if you're an experienced programmer, you may find that Swift represents these objects differently from other languages that you may be familiar with.
Important Information
For more information on data types, visit: https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html.
Let's walk through the Swift versions of integers, floating-point numbers, Booleans, and strings, in the next sections.
Let's say you want to store the following:
You would use integers, which are numbers without a fractional component (including negative numbers).
Integers in Swift are represented by the Int
type.
Let's say you want to store the following: