Cargando…

Mac programming for absolute beginners /

Want to learn how to program on your Mac? Not sure where to begin? Best-selling author Wallace Wang will explain how to get started with Cocoa, Objective-C, and Xcode. Whether you are an experienced Windows coder moving to the Mac, or you are completely new to programming, you'll see how the ba...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Wang, Wally
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [Berkeley, Calif.] : New York : Apress ; Distributed to the Book trade worldwide by Springer Science+Business Media, ©2011.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn747105594
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 110818s2011 caua o 001 0 eng d
040 |a GW5XE  |b eng  |e pn  |c GW5XE  |d OCLCQ  |d COO  |d OCLCQ  |d OCLCF  |d BEDGE  |d UMI  |d E7B  |d Z5A  |d DEBSZ  |d IDEBK  |d B24X7  |d EBLCP  |d NUI  |d OCLCQ  |d MERUC  |d ESU  |d OCLCQ  |d VT2  |d IOG  |d OCLCO  |d N$T  |d OCLCA  |d OCL  |d OCLCQ  |d OCLCO  |d CEF  |d U3W  |d AU@  |d OCLCQ  |d OCLCO  |d WYU  |d YOU  |d LEAUB  |d W2U  |d UKAHL  |d OL$  |d OCLCQ  |d OCLCO  |d DKDLA  |d MEAUC  |d LIV  |d DCT  |d OCLCQ  |d ERF  |d OCLCQ  |d BRF  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO 
019 |a 713084981  |a 741519548  |a 759865621  |a 765144076  |a 771214936  |a 1005813599  |a 1058125680  |a 1058425971  |a 1087353934  |a 1111051138  |a 1112529295 
020 |a 9781430233374  |q (electronic bk.) 
020 |a 1430233370  |q (electronic bk.) 
020 |z 9781430233367  |q (pbk.) 
020 |z 1430233362  |q (pbk.) 
024 7 |a 10.1007/978-1-4302-3337-4  |2 doi 
029 1 |a AU@  |b 000048699589 
029 1 |a AU@  |b 000053272888 
029 1 |a AU@  |b 000067091025 
029 1 |a DEBSZ  |b 368473201 
029 1 |a DEBSZ  |b 397163193 
029 1 |a NZ1  |b 13932654 
029 1 |a NZ1  |b 14135867 
035 |a (OCoLC)747105594  |z (OCoLC)713084981  |z (OCoLC)741519548  |z (OCoLC)759865621  |z (OCoLC)765144076  |z (OCoLC)771214936  |z (OCoLC)1005813599  |z (OCoLC)1058125680  |z (OCoLC)1058425971  |z (OCoLC)1087353934  |z (OCoLC)1111051138  |z (OCoLC)1112529295 
037 |a 978-1-4302-3336-7  |b Springer  |n http://www.springerlink.com 
050 4 |a QA76.76.O63  |b W36517 2011 
072 7 |a COM 050020 x  |2 bisacsh 
072 7 |a COM  |x 046020  |2 bisacsh 
072 7 |a UY  |2 bicssc 
082 0 4 |a 005.26/8  |2 23 
049 |a UAMI 
100 1 |a Wang, Wally. 
245 1 0 |a Mac programming for absolute beginners /  |c Wallace Wang. 
246 1 |i Subtitle on cover:  |a Get started with Objective-C, Cocoa, and Xcode on the Mac 
260 |a [Berkeley, Calif.] :  |b Apress ;  |a New York :  |b Distributed to the Book trade worldwide by Springer Science+Business Media,  |c ©2011. 
300 |a 1 online resource (xvi, 398 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
347 |b PDF 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed November 29, 2017). 
520 |a Want to learn how to program on your Mac? Not sure where to begin? Best-selling author Wallace Wang will explain how to get started with Cocoa, Objective-C, and Xcode. Whether you are an experienced Windows coder moving to the Mac, or you are completely new to programming, you'll see how the basic design of a Mac OS X program works, how Objective-C differs from other languages you may have used, and how to use the Xcode development environment. Most importantly, you'll learn how to use elements of the Cocoa framework to create windows, store data, and respond to users in your own Mac programs. If you want to learn how to develop apps with Cocoa, Objective-C, and Xcode, this book is a great first step. Here are just a few of the things you'll master along the way: Fundamental programming concepts aided by short, easy-to-understand examples How to use Xcode and related programming tools to save time and work more efficiently A firm understanding of the basics of Objective-C and how it compares to other languages you might know How to create simple apps using the Cocoa framework How to easily design, write, test, and market your finished program With this book and your trusty Mac, you're well on your way to transforming your Mac app ideas into real applications. 
505 0 |a Title Page; Copyright Page; Contents at a Glance; Table of Content; About the Author; About the Technical Reviewer; Acknowledgments; Introduction; Code Conventions Used in This Book; What to Expect from This Book; Chapter 1 Understanding Programming; Programming Principles; Dividing Programs into Parts; Event-Driven Programming; Object-Oriented Programming; Encapsulation; Polymorphism; Inheritance; Understanding Programming Languages; The Building Blocks of Programming Languages; Programming Frameworks; Mac Programming Today; Summary; Chapter 2 Understanding Apple's Programming Tools. 
505 8 |a Understanding EditorsUnderstanding Xcode; Deciphering the Xcode User Interface; Running Xcode; Creating a New Project in Xcode; Examining Project Files in Xcode; Compiling a Program; Summary; Chapter 3 The Basic Steps to Creating a Mac Program; A Bare-Bones Program Example; A Simple User Interface Example; An Interactive User Interface Example; Writing Objective-C Code; Creating an Action Method; Connecting the User Interface; An Advanced Interactive User Interface Example; Summary; Chapter 4 Getting Help; Installing Help Topics; Getting Help About Xcode; Getting Help About Core Library. 
505 8 |a Searching for HelpGetting Quick Help; Viewing Documentation for Selected Text; Getting Help with Library Windows; Help While Writing Code; Color-Coding; Customizing the Editor; Using Code Completion; Summary; Chapter 5 Learning Objective-C; Differences in Writing a Mac Objective-C Program; Understanding Objective-C Symbols; Defining the End of Each Line with a Semicolon; Defining the Beginning and End of Code with Curly Brackets; Defining Compiler Directives with the # Symbol; Defining Comments with //; Identifying Objects with [and] ; Defining Pointers with; Manipulating Data with Variables. 
505 8 |a Chapter 7 Repeating Code with LoopsLoops That Run a Fixed Number of Times; Quitting a for Loop Prematurely; Skipping in a for Loop; Loops That Run Zero or More Times; The while Loop; The do-while Loop; Quitting a while or do-while Loop Prematurely; Skipping a while or do-while Loop; Nested Loops; Summary; Chapter 8 Understanding the Cocoa Framework; An Overview of How Object-Oriented Programming Works; Starting with a Class; Reducing Bugs; Reusing Code; Defining Classes; Creating an Object; Storing Data in an Object; A Sample Program for Manipulating Objects. 
546 |a English. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Mac OS. 
630 0 0 |a Cocoa (Software framework) 
630 0 7 |a Mac OS  |2 fast 
630 0 7 |a Cocoa (Software framework)  |2 fast 
650 0 |a Macintosh (Computer)  |x Programming. 
650 0 |a Objective-C (Computer program language) 
650 6 |a Macintosh (Ordinateur)  |x Programmation. 
650 6 |a Objective-C (Langage de programmation) 
650 7 |a COMPUTERS  |x Hardware  |x Personal Computers  |x Macintosh.  |2 bisacsh 
650 7 |a COMPUTERS  |x Operating Systems  |x Apple (Mac OS & iOS)  |2 bisacsh 
650 7 |a Macintosh (Computer)  |x Programming  |2 fast 
650 7 |a Objective-C (Computer program language)  |2 fast 
776 0 8 |i Print version:  |a Wang, Wally.  |t Mac programming for absolute beginners.  |d [Berkeley, Calif.] : Apress ; New York : Distributed to the Book trade worldwide by Springer Science+Business Media, ©2011  |w (DLC) 2011287234 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781430233367/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26905607 
938 |a Books 24x7  |b B247  |n bks00041218 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL799033 
938 |a ebrary  |b EBRY  |n ebr10494327 
938 |a EBSCOhost  |b EBSC  |n 422330 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis26005022 
994 |a 92  |b IZTAP