Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Swift Cookbook - Second Edition

You're reading from  Swift Cookbook - Second Edition

Product type Book
Published in Feb 2021
Publisher Packt
ISBN-13 9781839211195
Pages 500 pages
Edition 2nd Edition
Languages
Authors (2):
Keith Moon Keith Moon
Profile icon Keith Moon
Chris Barker Chris Barker
Profile icon Chris Barker
View More author details

Table of Contents (14) Chapters

Preface 1. Swift Building Blocks 2. Mastering the Building Blocks 3. Data Wrangling with Swift Control Flow 4. Generics, Operators, and Nested Types 5. Beyond the Standard Library 6. Building iOS Apps with Swift 7. Swift Playgrounds 8. Server-Side Swift 9. Performance and Responsiveness in Swift 10. SwiftUI and Combine Framework 11. Using CoreML and Vision in Swift 12. About Packt 13. Other Books You May Enjoy

Comparing dates with Foundation

This recipe will focus on one area of Foundation that is very widely used, that is, date and time manipulation and formatting.

We will create a function that determines how long there is until Christmas and returns this information as a string that can be displayed to a user.

Getting ready

Create a new iOS playground and import the Foundation framework at the top of the playground:

import Foundation

How to do it...

Let's create a function that will return a string telling us how long there is until Christmas that we can then print:

  1. Define the function:
func howLongUntilChristmas() -> String {

}
  1. Within the function, get the current calendar and time zone:
let calendar = Calendar.current
let timeZone = TimeZone.current
  1. Get the current date and time and use the calendar to get the current year:
let now = Date()
let yearOfNextChristmas = calendar.component(.year, from: now)
  1. Define date components that correspond to midnight on Christmas Day:
var...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}