SlideShare a Scribd company logo
Swift Tutorial - 1
Jintin
Feature
• Modern
• Static Language
• Type Safety & Inference
• Objective-C Compatible
• Open Source
Hello World
print(“Hello, world”)
Const vs Variable
var a = 1
a = 2
let b = 1
b = 2 // error
Type Safe
var a: Int = 1
var b: Double = 1.1
var c: [Int] = [1, 2, 3]
var d: String = “hello”
var e: Int = 1.1 // error
Type Inference
var a: Int = 1
var b = 1 // b is Int too
Optional
var a: Int = nil // error
var b: Int? = nil
Optional
var a: Int = 1
print(a) // 1
var b: Int? = 1
print(b) // Optional(1)
Unwrapped Optional
var b: Int? = 1
print(b) // Optional(1)
print(b!) // 1
Control Flow: if
if a == 1 {
print(“a = 1”)
} else {
// do something
}
Control Flow: if let
var a: Int? = 1
if let b = a {
print(b)
}
Exercise
// print “Hello, [name]” if
name not nil, else print
“Hello there.”
var name: String?

More Related Content

PDF
Feedback on Part 1 of the CSLP
PDF
Crash Course in Objective-C
PDF
Swift Tutorial 2
PDF
Taller Swift - iCon
PDF
Common Java problems when developing with Android
PDF
Getting started with Xcode
PDF
놀아요 Swift Playgrounds
PDF
Testing Android apps with Robotium
Feedback on Part 1 of the CSLP
Crash Course in Objective-C
Swift Tutorial 2
Taller Swift - iCon
Common Java problems when developing with Android
Getting started with Xcode
놀아요 Swift Playgrounds
Testing Android apps with Robotium

Viewers also liked (20)

PDF
Swifter Taipei 聊聊 Swift 遊樂場、變數常數、數字與運算
PDF
Feedback on Part 1 of the Software Engineering Large Practical
PDF
Quick quiz on Objective-C
PDF
Programming in Objective-C
PDF
Standford 2015 iOS讀書會 week1: 1.Logistics , iOS 8 Overview 2. More Xcode and S...
PDF
Swift Basic
PDF
To swiftly go where no OS has gone before
PDF
Standford 2015 week8
PDF
打造你的第一個iPhone APP
PDF
Arrays in Objective-C
KEY
Objective-C Crash Course for Web Developers
PPT
Swift-Programming Part 1
PDF
Swift Summit: Pushing the boundaries of Swift to the Server
PDF
Object Oriented Programming in Swift Ch0 - Encapsulation
PDF
More Stochastic Simulation Examples
PDF
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
PDF
A swift introduction to Swift
PDF
Playgrounds: Mobile + Swift = BFF
PDF
Hello, WatchKit
PDF
Unleash the Power of Playgrounds
Swifter Taipei 聊聊 Swift 遊樂場、變數常數、數字與運算
Feedback on Part 1 of the Software Engineering Large Practical
Quick quiz on Objective-C
Programming in Objective-C
Standford 2015 iOS讀書會 week1: 1.Logistics , iOS 8 Overview 2. More Xcode and S...
Swift Basic
To swiftly go where no OS has gone before
Standford 2015 week8
打造你的第一個iPhone APP
Arrays in Objective-C
Objective-C Crash Course for Web Developers
Swift-Programming Part 1
Swift Summit: Pushing the boundaries of Swift to the Server
Object Oriented Programming in Swift Ch0 - Encapsulation
More Stochastic Simulation Examples
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
A swift introduction to Swift
Playgrounds: Mobile + Swift = BFF
Hello, WatchKit
Unleash the Power of Playgrounds
Ad

More from Jintin Lin (16)

PDF
KSP intro
PDF
Annotation Processing
PDF
我的開源之旅
PDF
Dagger 2 vs koin
PDF
ButterKnife
PDF
數學系的資訊人生
PDF
Instant app Intro
PDF
KVO implementation
PDF
iOS NotificationCenter intro
PDF
App design guide
PDF
J霧霾
PDF
transai
PDF
Swimat - Swift formatter
PDF
Andle
PDF
Realism vs Flat design
PDF
Android Service Intro
KSP intro
Annotation Processing
我的開源之旅
Dagger 2 vs koin
ButterKnife
數學系的資訊人生
Instant app Intro
KVO implementation
iOS NotificationCenter intro
App design guide
J霧霾
transai
Swimat - Swift formatter
Andle
Realism vs Flat design
Android Service Intro
Ad

Recently uploaded (20)

PDF
Getting Started with Data Integration: FME Form 101
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
cuic standard and advanced reporting.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Big Data Technologies - Introduction.pptx
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
Machine Learning_overview_presentation.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
A Presentation on Artificial Intelligence
PDF
Approach and Philosophy of On baking technology
Getting Started with Data Integration: FME Form 101
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Unlocking AI with Model Context Protocol (MCP)
Dropbox Q2 2025 Financial Results & Investor Presentation
Advanced methodologies resolving dimensionality complications for autism neur...
Network Security Unit 5.pdf for BCA BBA.
Per capita expenditure prediction using model stacking based on satellite ima...
Mobile App Security Testing_ A Comprehensive Guide.pdf
Accuracy of neural networks in brain wave diagnosis of schizophrenia
NewMind AI Weekly Chronicles - August'25-Week II
cuic standard and advanced reporting.pdf
Programs and apps: productivity, graphics, security and other tools
Digital-Transformation-Roadmap-for-Companies.pptx
Big Data Technologies - Introduction.pptx
A comparative analysis of optical character recognition models for extracting...
Machine Learning_overview_presentation.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
A Presentation on Artificial Intelligence
Approach and Philosophy of On baking technology

Swift Tutorial 1