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

Arrow left icon
Profile Icon Craig Clayton
Arrow right icon
₹800 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.5 (6 Ratings)
Paperback Dec 2018 692 pages 3rd Edition
eBook
₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m
Arrow left icon
Profile Icon Craig Clayton
Arrow right icon
₹800 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.5 (6 Ratings)
Paperback Dec 2018 692 pages 3rd Edition
eBook
₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m
eBook
₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m

What do you get with a Packt Subscription?

Free for first 7 days. ₹800 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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 : 9781789348668
Vendor :
Apple
Category :
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. ₹800 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

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

Packt Subscriptions

See our plans and pricing
Modal Close icon
₹800 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
₹4500 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 ₹400 each
Feature tick icon Exclusive print discounts
₹5000 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 ₹400 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 11,396.97
iOS 12 Programming for Beginners
₹3649.99
Hands-On Design Patterns with Swift
₹3649.99
Mastering iOS 12 Programming
₹4096.99
Total 11,396.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

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.