Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
iOS 12 Programming for Beginners
iOS 12 Programming for Beginners

iOS 12 Programming for Beginners: An introductory guide to iOS app development with Swift 4.2 and Xcode 10 , Third Edition

eBook
€29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

iOS 12 Programming for Beginners

Building a Foundation with Swift

Now that we have had a short tour of Xcode, it is time to start learning about Swift. Remember, if you are new to programming, things will be very different for you, so take your time. The essential skills that you learn here will set you up with a solid foundation in iOS development. If you have previous programming experience, you should still review this chapter, as it can only enhance your programming skills and act as a refresher for you.

On June 2, 2014, Apple changed the game for iOS development, because this was the day they announced Swift to the world. With this announcement, everybody was put on an even playing field, because they had to learn a new programming language. Swift has brought a more modern approach to developing apps and has seen a massive influx of new developers of all ages wanting to build iOS apps. However, enough about...

Playgrounds – an interactive coding environment

Before we jump into building the app that we will be creating in later chapters, called Let's Eat, we need to understand the basics of Swift. An easy way to experiment with Swift is to use Playgrounds. It is an interactive coding environment that evaluates your code and displays the results. Using Playgrounds gives us the ability to work with Swift without needing to create a project. It is great for prototyping a particular part of your app. So, whether you are learning or experimenting, Playgrounds are an invaluable tool. To create a Playground, we need to launch Xcode and click on Get started with a playground:

The Playground template screen appears. Make sure that you select iOS, and then choose Blank and hit Next:

You will be asked to give your project a name and a location to save the file; name your new project...

Data types – where it all starts

Swift offers a collection of built-in data types. Its data types are a string, an integer, floating-point numbers, and Booleans. These data types are found in most programming languages. Therefore, if you are not new to programming, you can skip this section and start at the Variables and constants – where data is held section later.

Let's walk through each data type for those of you who are new to programming or would like a refresher.

String

The first data type we will cover is a string. A series of characters represent a string. Strings are used to display text in an app. A string wrapped in quotes is known as a string literal. In programming, we cannot just add text to...

Type safety and type inference

Swift is a type-safe language, which means that you are encouraged to be clear about the value types with which your code works. Type inference means that, before your code runs, it quickly checks to ensure that you did not set anything to a different type. If you do, Xcode gives you an error. Why is this good? Let's say that you have an app in the store and that you set one of your variables as a String in one part of your code, but then accidentally set the same variable as an Int in another part of your code. This error may cause some bad behavior in your app that could cause it to crash. Finding these kinds of errors is like finding a needle in a haystack. Therefore, type checking helps you write safer code by helping you to avoid errors when working with different types.

We have now looked at data types and know that strings are for textual...

Operations with our integers

In our Playground, we know that age is an int, but with Int, we also can write arithmetic expressions using numbers, variables/constants, operators, and parentheses. Let's start with addition, subtraction, multiplication, and division. Add the following into Xcode:

So, sum added two integers (+ operator) together, totaling 43 in our preceding example. Then, we subtracted (- operator) sum from 32 to create a result (−11, in our example). After that, we took the result and multiplied (* operator) it by 5 (see -55 in the Results Panel). All of this is pretty basic math; however, you may have noticed something different with our division equation (/ operator). When you divide two integers, the result is the third integer. So, instead of -55 divided by 10 equals -5.5, our result was -5. To get the correct floating-point value of -5.5, we need...

Summary

We have hit the basics and, from this point, if you are new to programming, it is a good idea to make sure that you understand each topic we cover. As the chapters progress, we will cover more and more, so take your time and make sure that you are comfortable with all of the topics covered in this chapter.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Kick-start your iOS programming career and have fun building iOS apps of your choice
  • Get to grips with Xcode 10 and Swift 4.2, the building blocks of iOS development
  • Discover the latest features of iOS 12 - SiriKit, notifications, and much more

Description

Want to build iOS 12 applications from scratch with the latest Swift 4.2 language and Xcode 10 by your side? Forget sifting through tutorials and blog posts; this book is a direct route to iOS development, taking you through the basics and showing you how to put principles into practice. Take advantage of this developer-friendly guide and start building applications that may just take the App Store by storm! If you’re already an experienced programmer, you can jump right in and learn the latest iOS 12 features. For beginners, this book starts by introducing you to iOS development as you learn Xcode and Swift. You'll also study advanced iOS design topics, such as gestures and animations, to give your app the edge. You’ll explore the latest Swift 4.2 and iOS 12 developments by incorporating new features, such as the latest in notifications, custom-UI notifications, maps, and the recent additions in Sirikit. The book will guide you in using TestFlight to quickly get to grips with everything you need to get your project on the App Store. By the end of this book, you'll be ready to start building your own cool iOS applications confidently.

Who is this book for?

This book is for you if you are completely new to Swift, iOS, or programming and want to make iOS applications. However, you’ll also find this book useful if you’re an experienced programmer looking to explore the latest iOS 12 features.

What you will learn

  • Explore the distinctive design principles that define the iOS user experience
  • Navigate panels within an Xcode project
  • Use the latest Xcode asset catalogue of Xcode 10
  • Create a playgrounds project within your projects and understand how Ranges and Control flow work
  • Study operations with integers and work your way through if statements
  • Build a responsive UI and add privacy to your custom-rich notifications
  • Set up Sirikit to add voice for Siri shortcuts
  • Collect valuable feedback with TestFlight before releasing your apps on the App Store

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 24, 2018
Length: 692 pages
Edition : 3rd
Language : English
ISBN-13 : 9781789348354
Vendor :
Apple
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want

Product Details

Publication date : Dec 24, 2018
Length: 692 pages
Edition : 3rd
Language : English
ISBN-13 : 9781789348354
Vendor :
Apple
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 115.97
iOS 12 Programming for Beginners
€36.99
Hands-On Design Patterns with Swift
€36.99
Mastering iOS 12 Programming
€41.99
Total 115.97 Stars icon

Table of Contents

26 Chapters
Getting Familiar with Xcode Chevron down icon Chevron up icon
Building a Foundation with Swift Chevron down icon Chevron up icon
Building on the Swift Foundation Chevron down icon Chevron up icon
Digging Deeper Chevron down icon Chevron up icon
Digging into Collections Chevron down icon Chevron up icon
Starting the UI Setup Chevron down icon Chevron up icon
Setting Up the Basic Structure Chevron down icon Chevron up icon
Building Our App Structure in Storyboard Chevron down icon Chevron up icon
Finishing Up Our App Structure in Storyboard Chevron down icon Chevron up icon
Designing Cells Chevron down icon Chevron up icon
Getting Started with the Grid Chevron down icon Chevron up icon
Getting Data into Our Grid Chevron down icon Chevron up icon
Getting Started with the List Chevron down icon Chevron up icon
Where Are We? Chevron down icon Chevron up icon
Working with an API Chevron down icon Chevron up icon
Displaying Data in Restaurant Detail Chevron down icon Chevron up icon
Foodie Reviews Chevron down icon Chevron up icon
Working with Photo Filters Chevron down icon Chevron up icon
Understanding Core Data Chevron down icon Chevron up icon
Saving Reviews Chevron down icon Chevron up icon
Universal Chevron down icon Chevron up icon
iMessages Chevron down icon Chevron up icon
Notifications Chevron down icon Chevron up icon
SiriKit Chevron down icon Chevron up icon
Beta and Store Submission Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.5
(6 Ratings)
5 star 33.3%
4 star 0%
3 star 0%
2 star 16.7%
1 star 50%
Filter icon Filter
Top Reviews

Filter reviews by




Maria Urbina Jun 01, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is super easy.Ingot the book today and it was hard for me to put it down because you learn a lot and it’s well explained I’m someone with autism and I m glad I bought it. :-)
Amazon Verified review Amazon
George Matty Apr 23, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I'm into about 5 chapters. The examples are great; easy to follow and the explanations are right on. The author goes at just the right pace. He took the right approach. He teaches Swift as well as iOS 12. This book is well worth the money. I am now about to start the iOS 12 section building apps. I will updated more as I continue. Chapters are clear and easy to understand. Generally each chapter can be completed in about 2 hours or less. I'm looking forward to adding to this review once I complete this book.
Amazon Verified review Amazon
Kam Jun 11, 2020
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
I'm an experienced (5+ years, 6 monetized, published apps) Android developer who bought this book to add iOS to my portfolio. I bought the eBook on sale directly from Packt for $10, and man am I glad I didn't spend more than that.First, the good bits.1. Clean codeThis book has so much potential. It subtly teaches the use of design patterns (it doesn't specifically name them, but if you're already an experienced coder, you'll recognize them) and good programming practices, such as "separation of concerns", "D.R.Y. (don't repeat yourself), and S.O.L.I.D principles in general. I like that it's not just teaching you how to code swift, but how to write clean code, period. The end of some chapters even have you go back and refactor.2. ThoroughThe book's project, "Let's Eat", is an Open Table/Yelp style app that brings you from the basics of Swift to advanced topics not usually explored in a beginners "learn to code" book such as APIs (specifically JSON), store submission, and iMessages and Siri integration. If you take your time and carefully learn each chapter, you will be equipped to start your own project with plenty of sample code to reference from.Now the bad: TYPOS, TYPOS, TYPOS.There are so many typos that it unfortunately undoes all of the positive points I've listed above. Because I'm an experienced coder in Java/Kotlin, and patient enough to explore Apple's Swift documentation when in doubt, I was able to make it to the end of the book. But it was definitely a testament to my determination more than anything.TLDR:This book has so much potential but thanks to project-breaking typos, missing code and more, I would NOT recommend this book to anyone who is coding Swift for the first time. Because of the advanced topics it covers towards the end, it might be ok as a second book after a using one with better editing as your introduction to Swift. That way you can recognize the typos (admittedly, some are obvious) and have a bit more confidence when the sample code doesn't compile even though you copied it word-for-word.Do not pay more than $10 for this book.
Amazon Verified review Amazon
Bruce E. Hamilton Oct 14, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Started the LetsEat tutorial. It worked for a couple of chapters then the app started crashing. Inspection revealed there appear to be some code missing. Have requested support from Packt. After a couple of weeks, nothing from Packt. Advise new iOS programmers not to purchase the book as the app will require some study and a bit of luck to make work.
Amazon Verified review Amazon
C. Thurgood Oct 13, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
My review simply echos W. Baer's review... Up to Chapter 10 - great, after that, I had to stop. I contacted Packt and although they did reply it didn't help me so regretfully I had to abandon this book. Shame as it looks like it had everything I was looking for.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.