SlideShare a Scribd company logo
IOS 8 Features
and
Swift Development
Presenter: Vivek Chaudhary, Mindfire Solutions
Date: 08/05/2013
 IOS 8 Features
 Swift Development
 Syntax and Basics
 Objective C to Swift
 Sample Code
 Pros and Cons
 Battery usage indicator
 Interactive Notifications
 Credit Card Scanning
 New keyboard
 Continuity
 Family Sharing
 Message UI and new widgets
 Lock screen app suggestions
 Healthkit
 Improved search results
 Some syntax from Java Script
 Smartly detects data types itself
 Objective C API + Additional
 No semicolon
 Body Braces compulsory for If-else
 Single file in place of two files (.h and .m)
 Declaration and implementation in the same
file
 Reduces the project size
 Number of files reduces to half
1. let someConstant : String = “constant”
2. var someVar : String = “variable”
 Swift is smart enough to detect data types
 Var someVar = “variable”
 Var var1 = 1
 Var var2 = 1.0
 NSString and String both are available
1. Let string = “Hello”
2. Let anotherString = string + “Mindfire”
1. For char in str
2. {
3. // Code Here
4. }
 Objective C
 [NSString stringWithFormat:]
 Swift
 (expression)
 Let var1 = 2
 Let var2 = 3
 Println( “Multiplication is : (var1 * var2)”)
1. let someArray:String[] = [“A”, “B”, “C”]
2. let someArray = [“A”, “B”, “C”]
3. var someArray:String[] = [“A”, “B”, “C”]
4. SomeArray += “D”
5. SomeArray += [“D”, “E”]
6. print(“First Element :(someArray[0]) ”)
1. let dict:Dictionary<String, String> = [“A”:”1”,
“B”:”2”]
2. var dict:Dictionary<String, String> = [“A”:”1”,
“B”:”2”]
3. var dict = [“A”:”1”, “B”:”2”]
1. dict[“C”] = “3”
2. Dict += [“D”:”4”, “E”:”5”]
 + and – are sliced off.
func functionName(var1:String, var2:String)-
>String
 Functions can return more than one
parameters too.
 These are returned in the form of tuples.
Function Definition
func functionName(var1:String, var2:String)-
>(String, Int)
Function Calling
Var result : (res1:String, res2:Int) =
self.functionName(var1:”Hello”, var2:”Mobile”)
Print(“result is (result.res1)”;
 Type id changes to AnyObject
 Downcast is done automatically by swift.
 “as” keyword is used to typecast
Var textField: UITextField = array.firstObject() as
UITextField
One has to manually change his Objective C code
to Swift
 - changes to func
 + changes to class func
 #define changes to let
 #pragma changes to // MARK :
 init is not used in swift.
 InitWith and with is also not used.
 Complex macros should be converted into
functions
Let myColor = UIColor(red:0.5,
green:0.5,blue:0.5, alpha:1.0);
PLAYGROUNDS
The Swift Programming Language with iOS App
REFRENCE LINKS
https://developer.apple.com/library/prerelease/i
os/documentation/Swift/Conceptual/BuildingCo
coaApps/
http://code.tutsplus.com/tutorials/an-
introduction-to-swift-part-1--cms-21389
Presenter: Debasish Mohanty, Mindfire Solutions
Thank you

www.mindfiresolutions.com
https://www.facebook.com/MindfireSolutions
http://www.linkedin.com/company/mindfire-solutions
http://twitter.com/mindfires

More Related Content

What's hot (20)

PDF
Adopting F# at SBTech
Antya Dev
 
PDF
Green dao 3.0
彥彬 洪
 
PDF
Dependency rejection and TDD without Mocks
Antya Dev
 
PDF
The Ring programming language version 1.9 book - Part 54 of 210
Mahmoud Samir Fayed
 
PDF
greenDAO
Mu Chun Wang
 
PPT
Hibernate Tutorial for beginners
rajkamal560066
 
PDF
Python dictionaries
Krishna Nanda
 
PPT
Prototype Js
Kivanc Kanturk
 
PPTX
Realm or: How I learned to stop worrying and love my app database
Sergi Martínez
 
PPTX
Indexing and Query Optimisation
MongoDB
 
PDF
FleetDB: A Schema-Free Database in Clojure
Mark McGranaghan
 
PDF
FleetDB A Schema-Free Database in Clojure
elliando dias
 
PPTX
Indexing and Query Optimization
MongoDB
 
PPTX
Merge Multiple CSV in single data frame using R
Yogesh Khandelwal
 
DOCX
descriptive programming
Anand Dhana
 
PDF
How to Avoid Common Data Visualization Pitfalls and Being Led Astray By Your ...
MongoDB
 
PDF
Working with the Web: 
Decoding JSON
SV.CO
 
ODP
2011 Mongo FR - Indexing in MongoDB
antoinegirbal
 
PPSX
CodeIgniter L2 helper & libraries & form validation
Mohammad Tahsin Alshalabi
 
PPTX
greenDAO
Smilee Yang
 
Adopting F# at SBTech
Antya Dev
 
Green dao 3.0
彥彬 洪
 
Dependency rejection and TDD without Mocks
Antya Dev
 
The Ring programming language version 1.9 book - Part 54 of 210
Mahmoud Samir Fayed
 
greenDAO
Mu Chun Wang
 
Hibernate Tutorial for beginners
rajkamal560066
 
Python dictionaries
Krishna Nanda
 
Prototype Js
Kivanc Kanturk
 
Realm or: How I learned to stop worrying and love my app database
Sergi Martínez
 
Indexing and Query Optimisation
MongoDB
 
FleetDB: A Schema-Free Database in Clojure
Mark McGranaghan
 
FleetDB A Schema-Free Database in Clojure
elliando dias
 
Indexing and Query Optimization
MongoDB
 
Merge Multiple CSV in single data frame using R
Yogesh Khandelwal
 
descriptive programming
Anand Dhana
 
How to Avoid Common Data Visualization Pitfalls and Being Led Astray By Your ...
MongoDB
 
Working with the Web: 
Decoding JSON
SV.CO
 
2011 Mongo FR - Indexing in MongoDB
antoinegirbal
 
CodeIgniter L2 helper & libraries & form validation
Mohammad Tahsin Alshalabi
 
greenDAO
Smilee Yang
 

Viewers also liked (20)

PDF
Swift - the future of iOS app development
openak
 
PDF
iOSMumbai Meetup Keynote
Glimpse Analytics
 
PPTX
Medidata Customer Only Event - Global Symposium Highlights
Donna Locke
 
PDF
Jsm2013,598,sweitzer,randomization metrics,v2,aug08
Dennis Sweitzer
 
PDF
Medidata AMUG Meeting / Presentation 2013
Brock Heinz
 
PDF
Tools, Frameworks, & Swift for iOS
Teri Grossheim
 
PDF
Medidata Rave Coder
Nikolay Rusev
 
PPTX
Beginning iOS Development with Swift
TurnToTech
 
PDF
iOS Bootcamp: learning to create awesome apps on iOS using Swift (Lecture 7)
Jonathan Engelsma
 
PDF
Swift Tutorial Part 2. The complete guide for Swift programming language
Hossam Ghareeb
 
PPTX
I os swift 3.0 初體驗 &amp; 玩 facebook sdk
政斌 楊
 
PDF
Distributing information on iOS
Make School
 
PDF
Advanced Core Data
Make School
 
PPT
Developing iOS apps with Swift
New Generation Applications
 
PPTX
iOS Swift & FireBase 玩上雲端囉
政斌 楊
 
PPTX
How to create edit checks in medidata rave painlessly
Weihong Yang
 
PDF
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
Hossam Ghareeb
 
PDF
Introduction to Swift programming language.
Icalia Labs
 
PPTX
Swift Tableview iOS App Development
Ketan Raval
 
PDF
A swift introduction to Swift
Giordano Scalzo
 
Swift - the future of iOS app development
openak
 
iOSMumbai Meetup Keynote
Glimpse Analytics
 
Medidata Customer Only Event - Global Symposium Highlights
Donna Locke
 
Jsm2013,598,sweitzer,randomization metrics,v2,aug08
Dennis Sweitzer
 
Medidata AMUG Meeting / Presentation 2013
Brock Heinz
 
Tools, Frameworks, & Swift for iOS
Teri Grossheim
 
Medidata Rave Coder
Nikolay Rusev
 
Beginning iOS Development with Swift
TurnToTech
 
iOS Bootcamp: learning to create awesome apps on iOS using Swift (Lecture 7)
Jonathan Engelsma
 
Swift Tutorial Part 2. The complete guide for Swift programming language
Hossam Ghareeb
 
I os swift 3.0 初體驗 &amp; 玩 facebook sdk
政斌 楊
 
Distributing information on iOS
Make School
 
Advanced Core Data
Make School
 
Developing iOS apps with Swift
New Generation Applications
 
iOS Swift & FireBase 玩上雲端囉
政斌 楊
 
How to create edit checks in medidata rave painlessly
Weihong Yang
 
Swift Tutorial Part 1. The Complete Guide For Swift Programming Language
Hossam Ghareeb
 
Introduction to Swift programming language.
Icalia Labs
 
Swift Tableview iOS App Development
Ketan Raval
 
A swift introduction to Swift
Giordano Scalzo
 
Ad

Similar to The Swift Programming Language with iOS App (20)

PDF
iOS Bootcamp: learning to create awesome apps on iOS using Swift (Lecture 02)
Jonathan Engelsma
 
PDF
Swift, swiftly
Jack Nutting
 
PDF
Swiftly Switching: The Transition from Obj-C to Swift
Maegan Snee
 
PDF
Swift rocks! #1
Hackraft
 
PPTX
IOS Swift language 2nd tutorial
Hassan A-j
 
PPTX
Swift vs Objective-C
Mindfire Solutions
 
PDF
To Swift 2...and Beyond!
Scott Gardner
 
PDF
Introducing Swift v2.1
Abhishek Dwivedi
 
PDF
Apple’s New Swift Programming Language Takes Flight With New Enhancements And...
Azilen Technologies Pvt. Ltd.
 
PPT
Swift-Programming Part 1
Mindfire Solutions
 
PDF
iOS 14 Programming Fundamentals with Swift Covers iOS 14 Xcode 12 and Swift 5...
zfhvtdavx3598
 
PPTX
Introduction to Swift (tutorial)
Bruno Delb
 
PDF
Workshop Swift
Commit University
 
PDF
Ios 12 App Development Essentials Learn To Develop Ios 12 Apps With Xcode 10 ...
kotakyimam93
 
PDF
iOS NSAgora #3: Objective-C vs. Swift
Alex Cristea
 
PDF
Swift for-rubyists
Michael Yagudaev
 
PDF
Working with Cocoa and Objective-C
Kazunobu Tasaka
 
PDF
Think sharp, write swift
Pascal Batty
 
PDF
Intro toswift1
Jordan Morgan
 
iOS Bootcamp: learning to create awesome apps on iOS using Swift (Lecture 02)
Jonathan Engelsma
 
Swift, swiftly
Jack Nutting
 
Swiftly Switching: The Transition from Obj-C to Swift
Maegan Snee
 
Swift rocks! #1
Hackraft
 
IOS Swift language 2nd tutorial
Hassan A-j
 
Swift vs Objective-C
Mindfire Solutions
 
To Swift 2...and Beyond!
Scott Gardner
 
Introducing Swift v2.1
Abhishek Dwivedi
 
Apple’s New Swift Programming Language Takes Flight With New Enhancements And...
Azilen Technologies Pvt. Ltd.
 
Swift-Programming Part 1
Mindfire Solutions
 
iOS 14 Programming Fundamentals with Swift Covers iOS 14 Xcode 12 and Swift 5...
zfhvtdavx3598
 
Introduction to Swift (tutorial)
Bruno Delb
 
Workshop Swift
Commit University
 
Ios 12 App Development Essentials Learn To Develop Ios 12 Apps With Xcode 10 ...
kotakyimam93
 
iOS NSAgora #3: Objective-C vs. Swift
Alex Cristea
 
Swift for-rubyists
Michael Yagudaev
 
Working with Cocoa and Objective-C
Kazunobu Tasaka
 
Think sharp, write swift
Pascal Batty
 
Intro toswift1
Jordan Morgan
 
Ad

More from Mindfire Solutions (20)

PDF
Physician Search and Review
Mindfire Solutions
 
PDF
diet management app
Mindfire Solutions
 
PDF
Business Technology Solution
Mindfire Solutions
 
PDF
Remote Health Monitoring
Mindfire Solutions
 
PDF
Influencer Marketing Solution
Mindfire Solutions
 
PPT
High Availability of Azure Applications
Mindfire Solutions
 
PPTX
IOT Hands On
Mindfire Solutions
 
PPTX
Glimpse of Loops Vs Set
Mindfire Solutions
 
ODP
Oracle Sql Developer-Getting Started
Mindfire Solutions
 
PPT
Adaptive Layout In iOS 8
Mindfire Solutions
 
PPT
Introduction to Auto-layout : iOS/Mac
Mindfire Solutions
 
PPT
LINQPad - utility Tool
Mindfire Solutions
 
PPT
Get started with watch kit development
Mindfire Solutions
 
ODP
Material Design in Android
Mindfire Solutions
 
ODP
Introduction to OData
Mindfire Solutions
 
PPT
Ext js Part 2- MVC
Mindfire Solutions
 
PPT
ExtJs Basic Part-1
Mindfire Solutions
 
PPT
Spring Security Introduction
Mindfire Solutions
 
PPT
Angular In Depth
Mindfire Solutions
 
Physician Search and Review
Mindfire Solutions
 
diet management app
Mindfire Solutions
 
Business Technology Solution
Mindfire Solutions
 
Remote Health Monitoring
Mindfire Solutions
 
Influencer Marketing Solution
Mindfire Solutions
 
High Availability of Azure Applications
Mindfire Solutions
 
IOT Hands On
Mindfire Solutions
 
Glimpse of Loops Vs Set
Mindfire Solutions
 
Oracle Sql Developer-Getting Started
Mindfire Solutions
 
Adaptive Layout In iOS 8
Mindfire Solutions
 
Introduction to Auto-layout : iOS/Mac
Mindfire Solutions
 
LINQPad - utility Tool
Mindfire Solutions
 
Get started with watch kit development
Mindfire Solutions
 
Material Design in Android
Mindfire Solutions
 
Introduction to OData
Mindfire Solutions
 
Ext js Part 2- MVC
Mindfire Solutions
 
ExtJs Basic Part-1
Mindfire Solutions
 
Spring Security Introduction
Mindfire Solutions
 
Angular In Depth
Mindfire Solutions
 

Recently uploaded (20)

PPTX
How Cloud Computing is Reinventing Financial Services
Isla Pandora
 
PPTX
Equipment Management Software BIS Safety UK.pptx
BIS Safety Software
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PDF
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PDF
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
PPTX
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
PDF
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PPTX
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
DOCX
Import Data Form Excel to Tally Services
Tally xperts
 
PPTX
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
 
PDF
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
PDF
Online Queue Management System for Public Service Offices in Nepal [Focused i...
Rishab Acharya
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PDF
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Beyond Binaries: Understanding Diversity and Allyship in a Global Workplace -...
Imma Valls Bernaus
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
How Cloud Computing is Reinventing Financial Services
Isla Pandora
 
Equipment Management Software BIS Safety UK.pptx
BIS Safety Software
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
Unlock Efficiency with Insurance Policy Administration Systems
Insurance Tech Services
 
In From the Cold: Open Source as Part of Mainstream Software Asset Management
Shane Coughlan
 
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Import Data Form Excel to Tally Services
Tally xperts
 
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
 
Thread In Android-Mastering Concurrency for Responsive Apps.pdf
Nabin Dhakal
 
Online Queue Management System for Public Service Offices in Nepal [Focused i...
Rishab Acharya
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
Linux Certificate of Completion - LabEx Certificate
VICTOR MAESTRE RAMIREZ
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Beyond Binaries: Understanding Diversity and Allyship in a Global Workplace -...
Imma Valls Bernaus
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 

The Swift Programming Language with iOS App