Librería Portfolio Librería Portfolio

Búsqueda avanzada

TIENE EN SU CESTA DE LA COMPRA

0 productos

en total 0,00 €

IOS 10 PROGRAMMING FUNDAMENTALS WITH SWIFT. SWIFT, XCODE, AND COCOA BASICS
Título:
IOS 10 PROGRAMMING FUNDAMENTALS WITH SWIFT. SWIFT, XCODE, AND COCOA BASICS
Subtítulo:
Autor:
NEUBURG, M
Editorial:
O´REILLY
Año de edición:
2016
Materia
MACINTOSH
ISBN:
978-1-4919-7007-2
Páginas:
620
47,95 €

 

Sinopsis

Move into iOS development by getting a firm grasp of its fundamentals, including the Xcode IDE, the Cocoa Touch framework, and Swift 3-the latest version of Apple's acclaimed programming language. With this thoroughly updated guide, you'll learn Swift's object-oriented concepts, understand how to use Apple's development tools, and discover how Cocoa provides the underlying functionality iOS apps need to have.

Explore Swift's object-oriented concepts: variables and functions, scopes and namespaces, object types and instances
Become familiar with built-in Swift types such as numbers, strings, ranges, tuples, Optionals, arrays, dictionaries, and sets
Learn how to declare, instantiate, and customize Swift object types: enums, structs, and classes
Discover powerful Swift features such as protocols and generics
Catch up on Swift 3 innovations: revised APIs, new Foundation bridged types, and more
Tour the lifecycle of an Xcode project from inception to App Store-including Xcode's new automatic code signing and debugging features
Construct app interfaces with the nib editor, Interface Builder
Understand Cocoa's event-driven model and its major design patterns and features
Find out how Swift communicates with Cocoa's C and Objective-C APIs
Once you master the fundamentals, you'll be ready to tackle the details of iOS app development with author Matt Neuburg's companion guide, Programming iOS 10.



Language
Chapter 1The Architecture of Swift
Ground of Being
Everything Is an Object?
Three Flavors of Object Type
Variables
Functions
The Structure of a Swift File
Scope and Lifetime
Object Members
Namespaces
Modules
Instances
Why Instances?
self
Privacy
Design
Chapter 2Functions
Function Parameters and Return Value
External Parameter Names
Overloading
Default Parameter Values
Variadic Parameters
Ignored Parameters
Modifiable Parameters
Function In Function
Recursion
Function As Value
Anonymous Functions
Define-and-Call
Closures
Curried Functions
Function References and Selectors
Chapter 3Variables and Simple Types
Variable Scope and Lifetime
Variable Declaration
Computed Initializer
Computed Variables
Setter Observers
Lazy Initialization
Built-In Simple Types
Chapter 4Object Types
Object Type Declarations and Features
Enums
Structs
Classes
Polymorphism
Casting
Type Reference
Protocols
Generics
Extensions
Umbrella Types
Collection Types
Chapter 5Flow Control and More
Flow Control
Operators
Privacy
Introspection
Memory Management
IDE
Chapter 6Anatomy of an Xcode Project
New Project
The Project Window
The Project File and Its Dependents
The Target
From Project to Running App
Renaming Parts of a Project
Chapter 7Nib Management
The Nib Editor Interface
Nib Loading
Connections
Additional Configuration of Nib-Based Instances
Chapter 8Documentation
The Documentation Window
Class Documentation Pages
Quick Help
Symbols
Header Files
Sample Code
Internet Resources
Chapter 9Life Cycle of a Project
Device Architecture and Conditional Code
Version Control
Editing and Navigating Your Code
Running in the Simulator
Debugging
Testing
Clean
Running on a Device
Profiling
Localization
Distribution
Final App Preparations
Submission to the App Store
Cocoa
Chapter 10Cocoa Classes
Subclassing
Categories and Extensions
Protocols
Some Foundation Classes
Accessors, Properties, and Key-Value Coding
The Secret Life of NSObject
Chapter 11Cocoa Events
Reasons for Events
Subclassing
Notifications
Delegation
Data Sources
Actions
The Responder Chain
Key-Value Observing
Swamped by Events
Delayed Performance
Chapter 12Memory Management
Principles of Cocoa Memory Management
Rules of Cocoa Memory Management
What ARC Is and What It Does
How Cocoa Objects Manage Memory
Autorelease Pool
Memory Management of Instance Properties
Retain Cycles and Weak References
Unusual Memory Management Situations
Nib Loading and Memory Management
Memory Management of CFTypeRefs
Property Memory Management Policies
Debugging Memory Management Mistakes
Chapter 13Communication Between Objects
Visibility by Instantiation
Visibility by Relationship
Global Visibility
Notifications and Key-Value Observing
Model-View-Controller
Appendix C, Objective-C, and Swift
The C Language
Objective-C
Bilingual Targets