Arithmetic Operators
Add to favorites
Learn how to implement and optimize arithmetic operations in SwiftUI, from basic calculations to complex mathematical interfaces

SwiftUI Fundamentals Handbook
1
Building Your iOS Development Foundation
2
Comments: Documentation Waypoints in Your SwiftUI Codebase
22:02
3
SwiftUI Print Debugging
18:04
4
Variables and Constants
11:37
5
Strings and Interpolation
13:22
6
Swift Operators: The Foundation of SwiftUI Logic
7
Unary Operators
8
Binary Operators
9
Arithmetic Operators
10
If-Else and Comparison Operators
11
Logical Operators
12
Ternary Operators
13
Blocks and Scope
10:22
14
Swift Collections: Arrays, Sets, and Dictionaries Overview
15
Swift Arrays: The Basics Part 1
16
Swift Arrays: Best Practices in SwiftUI Part 2
17
Swift Sets
1. Introduction to Swift Arithmetic Operators
Swift's arithmetic operators provide a fundamental toolkit for performing mathematical calculations in your iOS applications. These operators are designed with type safety, performance, and developer experience in mind. Whether you're building a simple calculator or implementing complex financial computations, understanding these operators is essential for SwiftUI development.
A. Basic Operators Overview
Swift provides a robust set of arithmetic operators that form the foundation of mathematical operations in your iOS applications. These operators are designed to be type-safe and predictable, ensuring your calculations remain accurate and error-free.
- Form the foundation of all mathematical operations in Swift
- Include standard arithmetic operations (+, -, *, /)
- Work consistently across different numeric types
- Support both basic calculations and complex mathematical expressions
// Basic arithmetic operators
let addition = 5 + 3 // 8
let subtraction = 10 - 4 // 6
let multiplication = 3 * 6 // 18
let division = 20 / 5 // 4
// Compound assignment operators
var number = 10
number += 5 // Same as: number = number + 5
number *= 2 // Same as: number = number * 2
Unlike some other programming languages, Swift enforces strict type safety in arithmetic operations. This means you cannot mix different numeric types without explicit conversion, helping prevent common programming errors.
B. Type Safety in Swift Calculations
Swift's type system ensures that mathematical operations are performed safely and predictably. When working with arithmetic operators, you need to be mindful of the types involved:
- Ensures operations between different numeric types are explicit
- Prevents unexpected type conversion errors
- Maintains data integrity throughout calculations
- Provides compile-time safety for mathematical operations
// Type safety examples
let integerValue: Int = 42
let doubleValue: Double = 42.0
// This won't compile:
// let result = integerValue + doubleValue
// Correct way with explicit conversion:
let result = Double(integerValue) + doubleValue
The compiler enforces these rules to prevent potential precision loss and unexpected behavior. This is particularly important in SwiftUI where you might be dealing with various numeric types for different UI elements.
C. Working with Different Numeric Types
Swift provides several numeric types, each with its own purpose and characteristics:
- Offers various numeric types for different needs (Int, Double, Float, Decimal)
- Each type has specific characteristics and use cases
- Supports explicit conversion between types
- Optimized for different performance and precision requirements
// Integer types
let signedInteger: Int = -42 // Platform-dependent size (32 or 64 bit)
let unsignedInteger: UInt = 42 // Positive numbers only
let specific32Bit: Int32 = 42 // Exactly 32 bits
let specific64Bit: Int64 = 42 // Exactly 64 bits
// Floating-point types
let floatValue: Float = 42.0 // 32-bit floating point
let doubleValue: Double = 42.0 // 64-bit floating point (default)
let decimalValue = Decimal(42.0) // High-precision decimal
When working with these types in SwiftUI, it's important to understand their characteristics:
struct NumericExample: View {
// State variables for different numeric types
@State private var intValue: Int = 0
@State private var doubleValue: Double = 0.0
var body: some View {
VStack {
// Integer operations
Text("Integer: \(intValue)")
.onTapGesture {
intValue += 1 // Clean integer increment
}
// Double operations with formatting
Text("Double: \(doubleValue, specifier: "%.2f")")
.onTapGesture {
doubleValue += 0.1 // Floating point increment
}
}
}
}
D. Best Practices for Numeric Operations
In SwiftUI development, these operators are commonly used for:
- User interface calculations
- Data processing and analysis
- Animation timing and transitions
- Layout computations
- Financial calculations
- Game mechanics and scoring systems
i. Choose the Right Type:
- Use
Int
for whole numbers - Use
Double
for decimal calculations - Use
Decimal
for financial calculations where precision is crucial
ii. Handle Type Conversion Explicitly:
// Converting between numeric types
let integer = 42
let double = 42.5
// Explicit conversions
let doubleFromInt = Double(integer) // Safe conversion
let intFromDouble = Int(double) // Truncates decimal part
iii. Use Number Formatting in SwiftUI:
struct FormattedNumberView: View {
let number: Double = 1234.5678
var body: some View {
VStack {
// Basic decimal formatting
Text("\(number, specifier: "%.2f")")
// Currency formatting
Text(number, format: .currency(code: "USD"))
// Percentage formatting
Text(number/100, format: .percent)
}
}
}
This foundation in Swift's arithmetic operators and type system is crucial for building robust SwiftUI applications that handle numerical data. Understanding these concepts will help you create more reliable and maintainable code, especially when dealing with user input and mathematical calculations in your UI.
2. Core Arithmetic Operators in Swift
Swift's core arithmetic operators provide the building blocks for mathematical operations in your iOS applications. Let's explore each operator in detail with practical SwiftUI examples.
A. Addition (+)
The addition operator combines two values and is commonly used for both numeric addition and string concatenation.
struct AdditionExample: View {
let a: Double
let b: Double
var body: some View {
VStack(alignment: .leading) {
Text("Addition (+)")
.font(.headline)
HStack {
Text("\(a, specifier: "%.1f") + \(b, specifier: "%.1f") =")
Text("\(a + b, specifier: "%.1f")")
.bold()
}
}
}
}
B. Subtraction (-)
The subtraction operator returns the difference between two values.
struct SubtractionExample: View {
let a: Double
let b: Double
var body: some View {
VStack(alignment: .leading) {
Text("Subtraction (-)")
.font(.headline)
HStack {
Text("\(a, specifier: "%.1f") - \(b, specifier: "%.1f") =")
Text("\(a - b, specifier: "%.1f")")
.bold()
}
}
}
}
C. Multiplication (*)
The multiplication operator produces the product of two values.
struct MultiplicationExample: View {
let a: Double
let b: Double
var body: some View {
VStack(alignment: .leading) {
Text("Multiplication (*)")
.font(.headline)
HStack {
Text("\(a, specifier: "%.1f") × \(b, specifier: "%.1f") =")
Text("\(a * b, specifier: "%.1f")")
.bold()
}
}
}
}
D. Division (/)
The division operator divides one value by another. Important to handle division by zero cases.
struct DivisionExample: View {
let a: Double
let b: Double
var body: some View {
VStack(alignment: .leading) {
Text("Division (/)")
.font(.headline)
HStack {
Text("\(a, specifier: "%.1f") ÷ \(b, specifier: "%.1f") =")
if b == 0 {
Text("Cannot divide by zero")
.foregroundColor(.red)
} else {
Text("\(a / b, specifier: "%.1f")")
.bold()
}
}
}
}
}
E. Remainder (%)
The remainder operator returns the remainder of one number divided by another.
struct RemainderExample: View {
let a: Double
let b: Double
var body: some View {
VStack(alignment: .leading) {
Text("Remainder (%)")
.font(.headline)
HStack {
Text("\(Int(a)) % \(Int(b)) =")
if b == 0 {
Text("Cannot compute remainder with zero")
.foregroundColor(.red)
} else {
Text("\(Int(a) % Int(b))")
.bold()
}
}
}
}
}
F. Common Use Cases for Remainder Operator
- Even/Odd Number Detection
- Circular Array Access
- Time Calculations
- Pagination
- Color Pattern Generation
struct RemainderUseCases: View {
// State variables for interactive examples
@State private var inputNumber: Int = 0
@State private var selectedExample: Int = 0
var body: some View {
VStack(spacing: 20) {
// Input section
VStack(alignment: .leading) {
Text("Enter a number:")
.font(.headline)
TextField("Number", value: $inputNumber, format: .number)
.textFieldStyle(.roundedBorder)
.keyboardType(.numberPad)
}
// Examples Section
GroupBox {
VStack(alignment: .leading, spacing: 15) {
// 1. Even/Odd Checker
ExampleCard(title: "Even/Odd Check") {
Text("\(inputNumber) is \(inputNumber.isMultiple(of: 2) ? "even" : "odd")")
.foregroundColor(.secondary)
}
// 2. Circular Array Index
ExampleCard(title: "Circular Array Access") {
CircularArrayExample(number: inputNumber)
}
// 3. Time Formatting
ExampleCard(title: "Time Conversion") {
TimeExample(minutes: inputNumber)
}
// 4. Pagination
ExampleCard(title: "Pagination") {
PaginationExample(totalItems: inputNumber)
}
}
}
}
.padding()
}
}
// Supporting Views
struct ExampleCard<Content: View>: View {
let title: String
let content: Content
init(title: String, @ViewBuilder content: () -> Content) {
self.title = title
self.content = content
}
var body: some View {
VStack(alignment: .leading, spacing: 8) {
Text(title)
.font(.headline)
content
}
.padding()
.background(Color.secondary.opacity(0.1))
.cornerRadius(8)
}
}
// Example Implementation Views
struct CircularArrayExample: View {
let colors = ["Red", "Blue", "Green", "Yellow", "Purple"]
let number: Int
var body: some View {
let index = number % colors.count
HStack {
Text("Array[\(number) % \(colors.count)] = ")
Text(colors[index])
.foregroundColor(.secondary)
}
}
}
struct TimeExample: View {
let minutes: Int
var body: some View {
let hours = minutes / 60
let remainingMinutes = minutes % 60
Text("\(minutes) minutes = \(hours)h \(remainingMinutes)m")
.foregroundColor(.secondary)
}
}
struct PaginationExample: View {
let itemsPerPage = 10
let totalItems: Int
var body: some View {
let fullPages = totalItems / itemsPerPage
let remainingItems = totalItems % itemsPerPage
VStack(alignment: .leading) {
Text("Total pages: \(fullPages + (remainingItems > 0 ? 1 : 0))")
Text("Items on last page: \(remainingItems == 0 ? itemsPerPage : remainingItems)")
}
.foregroundColor(.secondary)
}
}
3. Advanced Arithmetic Concepts in Swift
Swift's advanced arithmetic concepts provide a robust foundation for performing complex mathematical operations while maintaining code safety and readability. Understanding these concepts is crucial for developing efficient and maintainable SwiftUI applications, especially when dealing with calculations, data processing, and numeric user interfaces.
A. Order of Operations (PEMDAS)
PEMDAS defines the sequence in which mathematical operations are performed in Swift, following standard mathematical conventions. Swift strictly adheres to this order to ensure consistent and predictable calculations.
The order is:
- Parentheses: Expressions in parentheses are evaluated first
- Exponents: Calculated using the
pow()
function - Multiplication and Division: Left to right
- Addition and Subtraction: Left to right
// Examples of PEMDAS in action
let example1 = 2 + 3 * 4 // Result: 14 (not 20)
let example2 = (2 + 3) * 4 // Result: 20
let example3 = 10 - 6 / 2 + 3 // Result: 10
B. Operator Precedence
Operator precedence in Swift determines which operators are evaluated first in an expression containing multiple operators. Understanding precedence is crucial for writing correct mathematical expressions.
Key precedence rules:
- Multiplication/division have higher precedence than addition/subtraction
- Assignment operators have low precedence
- Comparison operators have lower precedence than arithmetic operators
// Operator precedence examples
let precedence1 = 5 + 3 * 2 // 3 * 2 is evaluated first
let precedence2 = 15 - 4 + 2 // Evaluated left to right
let precedence3 = 4 * 2 + 3 * 5 // Multiplications first
C. Compound Assignment Operators
Compound assignment operators combine an arithmetic operation with assignment, providing a concise way to modify variables. These operators are particularly useful in SwiftUI when updating state variables.
Available compound operators:
+=
: Add and assign-=
: Subtract and assign*=
: Multiply and assign/=
: Divide and assign
var value = 10
value += 5 // value is now 15
value *= 2 // value is now 30
value -= 5 // value is now 25
value /= 5 // value is now 5
D. Type Inference in Arithmetic Operations
Swift's type inference system automatically determines the type of variables and expressions based on their context and initialization values. This feature makes code more concise while maintaining type safety.
Key aspects:
- Swift infers numeric types based on literal values
- Decimal points trigger Double inference
- Type annotations can override inference
- Mixed-type operations require explicit conversion
// Type inference examples
let integerValue = 42 // Inferred as Int
let doubleValue = 42.0 // Inferred as Double
let explicitDouble: Double = 42 // Explicit type annotation
// Type conversion required for mixed operations
let result = Double(integerValue) + doubleValue
E. Important Considerations:
i. Type Safety:
- Swift requires matching types for arithmetic operations
- Explicit conversion is needed for mixed-type calculations
- Type inference helps prevent accidental type mismatches
ii. Performance:
- Compound operators can be more efficient than separate operations
- Type inference has no runtime performance impact
- Proper type choice affects memory usage and calculation speed
iii. Code Readability:
- Parentheses can clarify operation order
- Compound operators make code more concise
- Type annotations can improve code clarity
iv. Best Practices:
- Use parentheses to make complex calculations clear
- Choose appropriate numeric types for your use case
- Consider using type annotations for clarity in complex expressions
- Leverage compound operators for cleaner code
Conclusion
Mastering Swift's arithmetic operations and type system is crucial for building robust SwiftUI applications. By following these guidelines and best practices, you'll be well-equipped to handle complex mathematical operations while maintaining code quality and performance. Remember to regularly review and update your implementation as Swift and SwiftUI evolve, and always prioritize code clarity and maintainability in your mathematical operations.
Learn with videos and source files. Available to Pro subscribers only.
Purchase includes access to 50+ courses, 320+ premium tutorials, 300+ hours of videos, source files and certificates.
Templates and source code
Download source files
Download the videos and assets to refer and learn offline without interuption.
Design template
Source code for all sections
Video files, ePub and subtitles
Browse all downloads
1
Building Your iOS Development Foundation
Master the fundamentals of Swift programming with hands-on examples designed for beginners and experienced developers alike
2
Comments: Documentation Waypoints in Your SwiftUI Codebase
Transform your code from mysterious instructions to a comprehensive narrative with strategic comments that explain the why
22:02
3
SwiftUI Print Debugging
Print debugging: Unlock the invisible processes with strategic print statements that illuminate state changes, view lifecycles and data flow
18:04
4
Variables and Constants
Learn when and how to use variables and constants to write safer, more efficient SwiftUI code
11:37
5
Strings and Interpolation
Learn essential string operations in Swift: Build better iOS apps with efficient text handling techniques
13:22
6
Swift Operators: The Foundation of SwiftUI Logic
Building powerful iOS apps through the language of operations
7
Unary Operators
Mastering the elegant simplicity of unary operators for cleaner, more expressive SwiftUI code that transforms your UI with minimal syntax
8
Binary Operators
Master the two-operand symbols that transform complex interface logic into concise, readable declarations
9
Arithmetic Operators
Learn how to implement and optimize arithmetic operations in SwiftUI, from basic calculations to complex mathematical interfaces
10
If-Else and Comparison Operators
Building Dynamic SwiftUI: Mastering If-Else and Comparison Operators
11
Logical Operators
Master SwiftUI's logical operators: Building intelligent iOS apps with robust decision-making systems
12
Ternary Operators
Use the power of Swift's ternary conditional operator to create dynamic, responsive interfaces with minimal code in SwiftUI
13
Blocks and Scope
A comprehensive guide to writing clean, organized code through proper variable management and state control
10:22
14
Swift Collections: Arrays, Sets, and Dictionaries Overview
Organize Your Data Effectively: Learn How to Choose and Optimize the Perfect Collection Type for Your SwiftUI Applications
15
Swift Arrays: The Basics Part 1
Master essential array operations and manipulations to build a solid foundation for iOS development
16
Swift Arrays: Best Practices in SwiftUI Part 2
Integrate arrays with SwiftUI, optimize performance, and implement professional-grade patterns for production apps
17
Swift Sets
From Basics to Advanced: Swift Set Techniques for Better Apps
Meet the instructor
We all try to be consistent with our way of teaching step-by-step, providing source files and prioritizing design in our courses.
Sourasith Phomhome
UI Designer
Designer at Design+Code
19 courses - 74 hours

Design Multiple Apps with Figma and AI
In this course, you’ll learn to design multiple apps using Figma and AI-powered tools, tackling a variety of real-world UI challenges. Each week, a new episode will guide you through a different design, helping you master essential UI/UX principles and workflows
4 hrs

SwiftUI Fundamentals Handbook
A comprehensive guide to mastering Swift programming fundamentals, designed for aspiring iOS developers. This handbook provides a structured approach to learning Swift's core concepts, from basic syntax to advanced programming patterns. Through carefully sequenced chapters, readers will progress from essential programming concepts to object-oriented principles, building a solid foundation for SwiftUI development. Each topic includes practical examples and clear explanations, ensuring a thorough understanding of Swift's capabilities. This handbook serves as both a learning resource and a reference guide, covering fundamental concepts required for modern iOS development. Topics are presented in a logical progression, allowing readers to build their knowledge systematically while gaining practical programming skills.
1 hrs

Design and Code User Interfaces with Galileo and Claude AI
In this course, you’ll learn how to use AI tools to make UI/UX design faster and more efficient. We’ll start with Galileo AI to create basic designs, providing a solid foundation for your ideas. Next, we’ll refine these designs in Figma to match your personal style, and finally, we’ll use Claude AI to turn them into working code—eliminating the need for traditional prototyping.
4 hrs

Build a React Native app with Claude AI
This comprehensive course explores the integration of cutting-edge AI tools into the React Native development workflow, revolutionizing the approach to mobile application creation. Participants will learn to leverage AI-powered platforms such as Claude and Locofy to expedite coding processes, enhance problem-solving capabilities, and optimize productivity.
13 hrs

Design and Prototype for iOS 18
Design and Prototype for iOS 18 is an immersive course that equips you with the skills to create stunning, user-friendly mobile applications. From mastering Figma to understanding iOS 18's latest design principles, you'll learn to craft two real-world apps - a Car Control interface and an AI assistant.
3 hrs

Master Responsive Layouts in Figma
Creating responsive layouts is a must-have skill for any UI/UX designer. With so many different devices and screen sizes, designing interfaces that look great and work well on all platforms is necessary. Mastering this skill will make you stand out in the field. In this course, we'll start from scratch to create this beautiful design using Figma. You'll learn how to make layouts that are easy to use and work well on any device. We'll cover key concepts and tools to help you master responsive design in Figma.
2 hrs

UI UX Design with Mobbin and Figma
Mobbin is a powerful tool for UI/UX designers seeking inspiration and innovative design solutions. This platform offers a vast collection of real-world mobile app designs, providing a treasure trove of UI elements and layouts.
2 hrs

3D UI Interactive Web Design with Spline
Learn to create 3D designs and UI interactions such as 3D icons, UI animations, components, variables, screen resize, scrolling interactions, as well as exporting, optimizing, and publishing your 3D assets on websites
3 hrs

Design and Prototype for iOS 17 in Figma
Crafting engaging experiences for iOS 17 and visionOS using the Figma design tool. Learn about Figma's new prototyping features, Dev Mode, variables and auto layout.
6 hrs

Design and Prototype Apps with Midjourney
A comprehensive course on transforming Midjourney concepts into interactive prototypes using essential design techniques and AI tools
8 hrs

iOS Design with Midjourney and Figma
Learn the fundamentals of App UI design and master the art of creating beautiful and intuitive user interfaces for mobile applications
1 hrs

UI Design for iOS, Android and Web in Sketch
Create a UI design from scratch using Smart Layout, Components, Prototyping in Sketch app
1 hrs

UI Design a Camera App in Figma
Design a dark, vibrant and curvy app design from scratch in Figma. Design glass icons, lens strokes and realistic buttons.
1 hrs

UI Design for iOS 16 in Sketch
A complete guide to designing for iOS 16 with videos, examples and design files
3 hrs

Prototyping in Figma
Learn the basics of prototyping in Figma by creating interactive flows from custom designs
1 hrs

UI Design Quick Websites in Figma
Learn how to design a portfolio web UI from scratch in Figma
1 hrs

UI Design Android Apps in Figma
Design Android application UIs from scratch using various tricks and techniques in Figma
2 hrs

UI Design Quick Apps in Figma
Design application UIs from scratch using various tricks and techniques in Figma
12 hrs

Figma Handbook
A comprehensive guide to the best tips and tricks in Figma
6 hrs