iOS 13 programming for beginners : get started with building iOS apps with Swift 5 and Xcode 11 /

Saved in:
Bibliographic Details
Author / Creator:Sahar, Ahmad, author.
Edition:Fourth edition.
Imprint:Birmingham, UK : Packt Publishing, 2020.
Description:1 online resource (1 volume) : illustrations
Language:English
Subject:
Format: E-Resource Book
URL for this record:http://pi.lib.uchicago.edu/1001/cat/bib/13456816
Hidden Bibliographic Details
Varying Form of Title:iOS thirteen programming for beginners
Other authors / contributors:Clayton, Craig, author.
ISBN:9781838820633
1838820639
9781838821906
Notes:Previous edition published: 2018.
Description based on online resource; title from title page (Safari, viewed June 26, 2020).
Summary:Functions and Closures -- Technical requirements -- Understanding functions -- Creating a function -- Using custom argument labels -- Using nested functions -- Using functions as return types -- Using functions as parameters -- Using a guard statement to exit a function early -- Understanding closures -- Simplifying closures -- Summary -- Classes, Structures, and Enumerations -- Technical requirements -- Understanding classes -- Creating a class declaration -- Making an instance of the class -- Making a subclass -- Overriding a superclass method -- Understanding structures
IOS 13 Programming for Beginners is a popular introductory guide on learning the essentials of Swift programming and iOS development for building your first iOS app and publishing it on the App Store. Fully updated to cover the latest features of iOS 13, you will be up to speed with writing your first iOS app with this practical guide.
Other form:Print version: Sahar, Ahmad. IOS 13 Programming for Beginners : Get Started with Building IOS Apps with Swift 5 and Xcode 11, 4th Edition. Birmingham : Packt Publishing, Limited, ©2020 9781838821906
Table of Contents:
  • Intro
  • Title Page
  • Copyright and Credits
  • About Packt
  • Contributors
  • Table of Contents
  • Preface
  • Section1: Swift
  • Getting Familiar with Xcode
  • Technical requirements
  • Downloading and installing Xcode from the App Store
  • Understanding the Xcode user interface
  • Running the app in the Simulator
  • Understanding the No Device and Build Only Device menu items
  • Using an iOS 13 device for development
  • Trusting the Developer App certificate on your iOS device
  • Connecting an iOS device wirelessly
  • Summary
  • Simple Values and Types
  • Technical requirements
  • Understanding Swift playgrounds
  • Customizing fonts and colors
  • Exploring data types
  • Storing integers
  • Storing floating-point numbers
  • Storing Booleans
  • Storing strings
  • Using common data types in the playground
  • Exploring constants and variables
  • Understanding type inference and type safety
  • Using type annotation to specify a type
  • Type safety
  • Exploring operators
  • Using arithmetic operators
  • Using compound assignment operators
  • Using comparison operators
  • Using logical operators
  • Performing string operations
  • Using the print() instruction
  • Summary
  • Conditionals and Optionals
  • Technical requirements
  • Introducing conditionals
  • Using if statements
  • Using switch statements
  • Introducing optionals
  • Using optionals and optional binding
  • Summary
  • Range Operators and Loops
  • Technical requirements
  • Range operators
  • Loops
  • The for-in loop
  • The while loop
  • The repeat-while loop
  • Summary
  • Collection Types
  • Technical requirements
  • Understanding arrays
  • Creating an array
  • Checking the number of elements in an array
  • Adding a new item to an array
  • Accessing an array element
  • Assigning a new value to an index
  • Removing an item from an array
  • Iterating over an array
  • Understanding dictionaries
  • Creating a dictionary
  • Checking the number of elements in a dictionary
  • Adding a new item to a dictionary
  • Accessing a dictionary element
  • Assigning a new value to a key
  • Removing an item from a dictionary
  • Iterating over a dictionary
  • Understanding sets
  • Creating a set
  • Checking the number of elements in a set
  • Adding a new item to a set
  • Checking whether a set contains an item
  • Removing an item from a set
  • Iterating over a set
  • Set operations
  • Set membership and equality