Mastering Swift 2 : (Record no. 2794951)

MARC details
000 -LEADER
fixed length control field 08676cam a2200805Ii 4500
001 - CONTROL NUMBER
control field ocn930602046
003 - CONTROL NUMBER IDENTIFIER
control field OCoLC
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20220712022800.0
006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION
fixed length control field m o d
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION
fixed length control field cr unu||||||||
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 151130s2015 enka o 001 0 eng d
040 ## - CATALOGING SOURCE
Original cataloging agency UMI
Language of cataloging eng
Description conventions rda
-- pn
Transcribing agency UMI
Modifying agency YDXCP
-- IDEBK
-- N$T
-- OCLCF
-- TEFOD
-- COO
-- OCLCQ
-- OCLCO
-- DEBSZ
-- EBLCP
-- OCL
-- DEBBG
-- IDB
-- OCLCQ
-- MERUC
-- OCLCQ
-- OCLCO
-- CEF
-- OCLCQ
-- OCLCO
-- WYU
-- UAB
-- OCLCQ
-- OCLCO
-- QGK
-- OCLCQ
-- OCLCO
019 ## -
-- 928779471
-- 935250146
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9781785888540
Qualifying information (electronic bk.)
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 1785888544
Qualifying information (electronic bk.)
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 1785886037
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9781785886034
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Cancelled/invalid ISBN 9781785886034
029 1# - (OCLC)
OCLC library identifier AU@
System control number 000057005444
029 1# - (OCLC)
OCLC library identifier CHNEW
System control number 000893898
029 1# - (OCLC)
OCLC library identifier CHVBK
System control number 374530556
029 1# - (OCLC)
OCLC library identifier DEBBG
System control number BV043968026
029 1# - (OCLC)
OCLC library identifier DEBSZ
System control number 46117295X
029 1# - (OCLC)
OCLC library identifier DEBSZ
System control number 485785129
029 1# - (OCLC)
OCLC library identifier GBVCP
System control number 882847767
035 ## - SYSTEM CONTROL NUMBER
System control number (OCoLC)930602046
Canceled/invalid control number (OCoLC)928779471
-- (OCoLC)935250146
037 ## - SOURCE OF ACQUISITION
Stock number CL0500000677
Source of stock number/acquisition Safari Books Online
037 ## - SOURCE OF ACQUISITION
Stock number 6DD92A62-1396-44DD-A65A-7561B8F09153
Source of stock number/acquisition OverDrive, Inc.
Note http://www.overdrive.com
050 #4 - LIBRARY OF CONGRESS CALL NUMBER
Classification number QA76.73.S95
072 #7 - SUBJECT CATEGORY CODE
Subject category code COM
Subject category code subdivision 051010
Source bisacsh
072 #7 - SUBJECT CATEGORY CODE
Subject category code COM
Subject category code subdivision 051370
Source bisacsh
082 04 - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.13/3
Edition number 23
049 ## - LOCAL HOLDINGS (OCLC)
Holding library MAIN
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Hoffman, Jon,
Relator term author.
9 (RLIN) 361551
245 10 - TITLE STATEMENT
Title Mastering Swift 2 :
Remainder of title dive into the latest release of the Swift programming language with this advanced Apple development book for creating exceptional iOS and OS X applications /
Statement of responsibility, etc Jon Hoffman.
246 3# - VARYING FORM OF TITLE
Title proper/short title Mastering Swift two
250 ## - EDITION STATEMENT
Edition statement Second edition.
264 #1 -
-- Birmingham, UK :
-- Packt Publishing,
-- 2015.
300 ## - PHYSICAL DESCRIPTION
Extent 1 online resource (1 volume) :
Other physical details illustrations
336 ## -
-- text
-- txt
-- rdacontent
337 ## -
-- computer
-- c
-- rdamedia
338 ## -
-- online resource
-- cr
-- rdacarrier
490 1# - SERIES STATEMENT
Series statement Community experience distilled
588 0# -
-- Online resource; title from cover page (Safari, viewed November 23, 2015).
500 ## - GENERAL NOTE
General note Includes index.
505 0# - FORMATTED CONTENTS NOTE
Formatted contents note Cover ; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Taking the First Steps with Swift ; What is Swift?; Swift features; Playgrounds; Getting started with Playgrounds; iOS and OS X Playgrounds; Showing images in a Playground; Creating and displaying graphs in Playgrounds; What Playgrounds are not; Swift language syntax; Comments; Semicolons; Parentheses; Curly braces; An assignment operator does not return a value; Spaces are optional in conditional and assignment statements; Hello World; Summary.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Chapter 2: Learning about Variables, Constants, Strings, and Operators Constants and variables; Defining constants and variables; Type safety; Type inference; Explicit types; Numeric types; Integers; Floating-point; The Boolean type; The string type; Optional variables; Enumerations; Operators; The assignment operator; Comparison operators; Arithmetic operators; The remainder operator; Increment and decrement operators; Compound assignment operators; The ternary conditional operator; The logical NOT operator; The logical AND operator; The logical OR operator; Summary.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Chapter 3: Using Collections and Cocoa Data Types Swift collection types; Mutability; Arrays; Creating and initializing arrays; Accessing the array elements; Counting the elements of an array; Is the array empty?; Appending to an array; Inserting a value into an array; Replacing elements in an array; Removing elements from an array; Adding two arrays; Reversing an array; Retrieving a subarray from an array; Making bulk changes to an array; Algorithms for arrays; sortInPlace; sort; filter; map; forEach; Iterating over an array; Dictionaries; Creating and initializing dictionaries.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Accessing dictionary valuesCounting key or values in a dictionary; Is the dictionary empty?; Updating the value of a key; Adding a key-value pair; Removing a key-value pair; Set; Initializing a set; Inserting items into a set; The number of items in a set; Checking whether a set contains an item; Iterating over a set; Removing items in a set; Set operations; Tuples; Using Cocoa data types; NSNumber; NSString; NSArray; NSDictionary; Foundation data types; Summary; Chapter 4: Control Flow and Functions ; What we have learned so far; Curly brackets; Parentheses; Control flow.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Conditional statementsThe if statement; Conditional code execution with the if-else statement; The for loops; Using the for loop variant; Using the for-in loop variant; The while loop; Using the while loop; Using the repeat-while loop; The switch statement; Using case and where statements with conditional statements; Filtering with the where statement; Filtering with the for-case statement; Using the if-case statement; Control transfer statements; The continue statement; The break statement; The fallthrough statement; The guard statement; Functions; Using a single parameter function.
520 ## - SUMMARY, ETC.
Summary, etc Dive into the latest release of the Swift programming language with this advanced Apple development book for creating exceptional iOS and osX applications About This Book Harness the latest and most advanced features of Swift 2 to develop quality iOS and OSX applications Comprehensive coverage of all the advanced features of Swift and guidance on advanced design techniques Dive deep into protocol extensions, learn new error handling model, and use featured Swift design patterns to write more efficient code Who This Book Is For This book is for developers that want to dive into the newest version of Swift. If you want in-depth knowledge of some of the most sophisticated elements of Swift development including protocol extensions, error-handling, design patterns, and concurrency, Mastering Swift 2 gives you guidance on how to use and apply them in your own projects. What You Will Learn Dive into the core components of Swift 2 including operators, collections, control flow, and functions Create and use classes, structures, and enums including object-oriented topics such as inheritance, protocols, and extensions Develop a practical understanding of subscripts, optionals, and closures Learn how to use the new protocol extension and error handling features of Swift 2 Add concurrency to your applications using Grand Central Dispatch Master Objective-C interoperability with Mix and Match Access network resources using Swift Implement various standard design patterns in the Swift language In Detail At their Worldwide Developer's conference (WWDC) in 2015, Apple announced Swift 2, a major update to the innovative programming language they first unveiled to the world the year before. Swift 2 features exciting enhancements to the original iteration of Swift, acting, as Apple put it themselves as?a successor to the C and Objective-C languages.?? This book demonstrates how to get the most from these new features, and gives you the skills and knowledge you need to develop dynamic iOS and OS X applications. Learn how to harness the newest features of Swift 2 todevelop advanced applications on a wide range of platforms with this cutting-edge development guide. Exploring and demonstrating how to tackle advanced topics such as Objective-C interoperability, ARC, closures, and concurrency, you'll develop your Swift expertise and become even more fluent in this vital and innovative language. With examples that demonstrate how to put the concepts into practice, an ...
590 ## - LOCAL NOTE (RLIN)
Local note eBooks on EBSCOhost
Provenance (VM) [OBSOLETE] EBSCO eBook Subscription Academic Collection - Worldwide
630 00 - SUBJECT ADDED ENTRY--UNIFORM TITLE
Uniform title iOS (Electronic resource)
9 (RLIN) 288428
630 00 - SUBJECT ADDED ENTRY--UNIFORM TITLE
Uniform title iPhone OS.
9 (RLIN) 335851
630 07 - SUBJECT ADDED ENTRY--UNIFORM TITLE
Uniform title IOS (Electronic resource)
Source of heading or term fast
-- (OCoLC)fst01784820
9 (RLIN) 288428
630 07 - SUBJECT ADDED ENTRY--UNIFORM TITLE
Uniform title IPhone OS.
Source of heading or term fast
-- (OCoLC)fst01784838
9 (RLIN) 335851
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Swift (Computer program language)
9 (RLIN) 751257
650 #6 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Swift (Langage de programmation)
9 (RLIN) 1069391
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element COMPUTERS
General subdivision Programming Languages
-- General.
Source of heading or term bisacsh
9 (RLIN) 854919
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element COMPUTERS
General subdivision Programming
-- Apple Programming.
Source of heading or term bisacsh
9 (RLIN) 970021
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Swift (Computer program language)
Source of heading or term fast
-- (OCoLC)fst01922222
9 (RLIN) 751257
655 #4 - INDEX TERM--GENRE/FORM
Genre/form data or focus term Electronic books.
776 08 - ADDITIONAL PHYSICAL FORM ENTRY
Display text Print version:
Main entry heading Hoffman, Jon.
Title Mastering Swift 2.
Place, publisher, and date of publication Birmingham : Packt Publishing Ltd, ©2015
International Standard Book Number 9781785886034
830 #0 - SERIES ADDED ENTRY--UNIFORM TITLE
Uniform title Community experience distilled.
856 40 - ELECTRONIC LOCATION AND ACCESS
Uniform Resource Identifier <a href="https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1091509">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1091509</a>
938 ## -
-- EBSCOhost
-- EBSC
-- 1091509
938 ## -
-- ProQuest MyiLibrary Digital eBook Collection
-- IDEB
-- cis33109343
938 ## -
-- YBP Library Services
-- YANK
-- 12687403
994 ## -
-- 92
-- INOPJ
Holdings
Withdrawn status Lost status Damaged status Not for loan Collection code Home library Current library Date acquired Total Checkouts Date last seen Price effective from Koha item type
        E-Books EBSCO OPJGU Sonepat- Campus OPJGU Sonepat- Campus 12/07/2022   12/07/2022 12/07/2022 Electronic-Books

O.P. Jindal Global University, Sonepat-Narela Road, Sonepat, Haryana (India) - 131001

Send your feedback to glus@jgu.edu.in

Hosted, Implemented & Customized by: BestBookBuddies   |   Maintained by: Global Library