Librería Portfolio Librería Portfolio

Búsqueda avanzada

TIENE EN SU CESTA DE LA COMPRA

0 productos

en total 0,00 €

SWIFT IOS 24-HOUR TRAINER
Título:
SWIFT IOS 24-HOUR TRAINER
Subtítulo:
Autor:
MISHRA, A
Editorial:
JOHN WILEY
Año de edición:
2016
Materia
MACINTOSH
ISBN:
978-1-119-07355-0
Páginas:
624
44,95 €

 

Sinopsis

Jump into the app development world with confidence!
iOS Swift 24-Hour Trainer combines book and video lessons in Apple´s Swift programming language to prepare you to build iPhone and iPad apps-and distribute them through the Appstore. First, this approachable text covers the fundamentals of Swift by introducing you to iOS development in this language, and presenting best practices for setting up a development environment and using variables, statements, expressions, operators, functions, and closures. Next, you explore common tasks, such as alert views, table views, and collection views. You then deepen your knowledge of Swift by considering network programming and local data storage. Finally, this engaging resource dives into slightly more advanced concepts, such as tab bars, web views, the accelerometer, camera, photo library, Google maps, and core location.

Swift was designed by Apple to incorporate modern scripting features while offering simpler, cleaner syntax than Objective-C to maintain a minimal and easy to read style. This more expressive code offers numerous key features, such as closures unified with function pointers, tuples and multiple value returns, generics, and functional programming patterns.

Learn how to obtain a device UDID
Test your applications on an actual device, so you can see your work in action
Distribute your applications outside of the App store, allowing you to test your work with real users
Review common reasons why apps are rejected by Apple to strengthen your case when submitting your apps for distribution
iOS Swift 24-Hour Trainer is an essential guide to Apple´s Swift programming language for beginning programmers.



Table of Contents

INTRODUCTION xxiii
SECTION I: HELLO iOS!

LESSON 1: HELLO iOS! 3

iOS Developer Essentials 3

A Suitable Mac 3

A Device for Testing 4

An iOS Developer Account 4

The Offi cial iOS SDK 6

The Typical App Development Process 6

Wireframes and Design 8

Coding 8

Testing 8

Home Screen Icon 9

Application Launch Image 10

Try It 11

Lesson Requirements 11

Hints 11

Step-by-Step 11

LESSON 2: A TOUR OF XCODE AND THE iOS SIMULATOR 19

The Welcome Screen 19

Creating a New Project 20

An Overview of the Xcode IDE 22

The Navigator Area 22

The Editor Area 26

The Utilities Area 28

The Debugger Area 30

The Toolbar 30

Features of the iOS Simulator 31

Installing and Uninstalling Applications 32

Limitations of the iOS Simulator 33

Try It 33

Lesson Requirements 33

Hints 33

Step-by-Step 33

LESSON 3: INTRODUCING SWIFT 35

Introducing Xcode Playgrounds 35

Constants and Variables 37

Data Types 38

Comments 39

Strings 39

Tuples 40

Optionals 41

Control Flow Statements 42

if-else 42

switch-case 44

Loops 45

Control Transfer Statements 49

Try It 50

Lesson Requirements 50

Hints 50

Step-by-Step 50

LESSON 4: FUNCTIONS 53

Declaring Functions 53

Parameters and Return Values 53

Try It 55

Lesson Requirements 55

Hints 55

Step-by-Step 55

LESSON 5: CLOSURES 57

Function Types 57

Closure Types 58

Global Closures 58

Nested Closures 58

Closure Expressions 59

Try It 60

Lesson Requirements 60

Hints 60

Step-by-Step 60

LESSON 6: ERROR HANDLING 63

The ErrorType Protocol 63

Throwing and Catching Errors 64

Suppressing Error Handling 65

The defer Statement 66

Try It 66

Lesson Requirements 66

Hints 67

Step by Step 67

LESSON 7: OBJECT-ORIENTED PROGRAMMING WITH SWIFT 69

Creating Classes with Swift 70

Properties 70

Methods 71

Instantiating Objects 74

Inheritance 74

Computed Properties 76

Enumerations 77

Protocols 77

Try It 81

Lesson Requirements 81

Hints 81

Step-by-Step 81

LESSON 8: SUPPORTING MULTIPLE DEVICE TYPES 85

Device Differences 86

Screen Size 86

Icon Size 87

Device Orientation 89

The Universal XCode Template 90

Try It 91

Lesson Requirements 91

Hints 91

Step-by-Step 91

LESSON 9: INTRODUCTION TO UIKIT AND ADAPTIVE LAYOUT 95

Introducing the UIKit Framework 95

The UIButton Class 97

The UILabel Class 98

Basic Constraints 99

Previewing Your Layout 106

Creating Outlets 108

Creating Actions 110

Try It 110

Lesson Requirements 110

Hints 111

Step-by-Step 111

LESSON 10: INTRODUCTION TO STORYBOARDS 117

Try It 124

Lesson Requirements 124

Hints 125

Step-by-Step 125

SECTION II: MORE iOS DEVELOPMENT

LESSON 11: HANDLING USER INPUT 143

Text Fields 143

Text Views 146

Try It 147

Lesson Requirements 147

Hints 148

Step-by-Step 148

LESSON 12: ALERT VIEWS AND ACTION SHEETS 155

Alert Views 155

Action Sheets 159

Try It 161

Lesson Requirements 161

Hints 161

Step-by-Step 161

LESSON 13: ADDING IMAGES TO YOUR VIEW 167

The UIImage Class 167

The UIImageView Class 170

Try It 172

Lesson Requirements 172

Hints 172

Step-by-Step 172

LESSON 14: PICKERS 177

Date Pickers 181

Custom Pickers 184

Try It 185

Lesson Requirements 185

Hints 185

Step-by-Step 186

LESSON 15: NAVIGATION CONTROLLERS 193

Adding a Navigation Controller to a Storyboard 193

The Navigation Controller Interface 196

Try It 197

Lesson Requirements 198

Hints 198

Step-by-Step 198

LESSON 16: TABLE VIEWS 203

Table View Appearance 203

Creating a Table View with Interface Builder 205

Static Table Views 206

Dynamic Table Views 207

Try It 211

Lesson Requirements 211

Hints 211

Step-by-Step 211

LESSON 17: COLLECTION VIEWS 217

Creating a Collection View with Interface Builder 218

Collection View Cells 219

Collection View Delegate and Data Source 220

Try It 222

Lesson Requirements 222

Hints 223

Step-by-Step 223

LESSON 18: TAB BARS AND TOOLBARS 229

Creating a Tab Bar Controller 231

Toolbars 235

Try It 238

Lesson Requirements 239

Hints 239

Step-by-Step 239

LESSON 19: CREATING VIEWS THAT SCROLL 245

The UIScrollView Class 245

Scroll Views and Text Fields 248

Try It 249

Lesson Requirements 249

Hints 250

Step-by-Step 250

LESSON 20: POPOVERS AND MODAL VIEWS 257

Popovers 257

Modal Views 260

Try It 262

Lesson Requirements 262

Hints 263

Step-by-Step 263

LESSON 21: TOUCHES AND GESTURES 269

Touch Events 269

Gesture Recognizers 270

Try It 271

Lesson Requirements 271

Hints 272

Step-by-Step 272

SECTION III: STORING DATA AND NETWORK PROGRAMMING

LESSON 22: PROPERTY LISTS 277

Creating Property Lists 277

Reading Property Lists 279

Try It 280

Lesson Requirements 280

Hints 280

Step-by-Step 280

LESSON 23: APPLICATION SETTINGS 285

Adding a Settings Bundle 285

Reading Preferences with Code 289

Try It 290

Lesson Requirements 290

Hints 290

Step-by-Step 291

LESSON 24: INTRODUCTION TO iCLOUD STORAGE 295

Basic Concepts 295

Pre