|En la categoría:
¿Quieres vender uno?

Cacao y Objective-C: Up and Running: Foundations of Mac, iPhone y iPad...-

Texto original
Cocoa and Objective-C: Up and Running: Foundations of Mac, Iphone, and iPad...
Texto original
by Stevenson, Scott | PB | Good
Último artículo disponible
Estado:
En buen estado
Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ... Más informaciónacerca del estado
Último / 3 vendidos
Precio:
USD6,48
Aproximadamente6,04 EUR
Respira tranquilidad. Envíos y devoluciones gratis.
Envío:
Gratis Economy Shipping. Ver detallespara el envío
Ubicado en: Aurora, Illinois, Estados Unidos
Entrega:
Entrega prevista entre el vie. 14 jun. y el lun. 17 jun. a 43230
Las fechas previstas de entrega (se abre en una nueva ventana o pestaña) incluyen el tiempo de manipulación del vendedor, el código postal de origen, el código postal de destino y la hora de aceptación, y dependen del servicio de envío seleccionado y de que el pago se haya hecho efectivoel pago se haya hecho efectivo (se abre en una nueva ventana o pestaña). Los plazos de entrega pueden variar, especialmente en épocas de mucha actividad.
Devoluciones:
30 días para devoluciones. El vendedor paga el envío de la devolución. Ver detalles- Más información sobre devoluciones
Pagos:
     

Compra con confianza

Garantía al cliente de eBay
Si no recibes el artículo que has pedido, te devolvemos el dinero. 

Información del vendedor

Registrado como vendedor profesional
El vendedor asume toda la responsabilidad de este anuncio.
N.º de artículo de eBay:194837641065
Última actualización el 06 jun 2024 10:00:26 H.EspVer todas las actualizacionesVer todas las actualizaciones

Características del artículo

Estado
En buen estado
Libro que se ha leído pero que está en buen estado. Daños mínimos en la tapa, incluidas rozaduras, pero sin roturas ni agujeros. Es posible que no incluya sobrecubierta para tapas duras. Tapa muy poco desgastada. La mayoría de las páginas están en buen estado con muy pocas arrugas o roturas. El texto subrayado a lápiz es prácticamente inexistente, no hay texto resaltado ni anotaciones en los márgenes. No faltan páginas. Consulta el anuncio del vendedor para obtener más información y la descripción de cualquier posible imperfección. Ver todas las definiciones de estadose abre en una nueva ventana o pestaña
Notas del vendedor
“Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ...
Binding
Paperback
Weight
1 lbs
Product Group
Book
IsTextBook
Yes
ISBN
0596804792
Subject Area
Computers
Publication Name
Cocoa and Objective-C: Up and Running : Foundations of Mac, iPhone, and iPad Programming
Item Length
9.2 in
Publisher
O'reilly Media, Incorporated
Subject
Programming Languages / General, Software Development & Engineering / General, Hardware / Mobile Devices, General, Programming / Macintosh
Publication Year
2010
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
0.8 in
Author
Scott Stevenson
Item Width
7 in
Item Weight
22.9 Oz
Number of Pages
416 Pages

Acerca de este producto

Product Information

Build solid applications for Mac OS X, iPhone, and iPod Touch, regardless of whether you have basic programming skills or years of programming experience. With this book, you'll learn how to use Apple's Cocoa framework and the Objective-C language through step-by-step tutorials, hands-on exercises, clear examples, and sound advice from a Cocoa expert. Cocoa and Objective-C: Up and Running offers just enough theory to ground you, then shows you how to use Apple's rapid development tools -- Xcode and Interface Builder -- to develop Cocoa applications, manage user interaction, create great UIs, and more. You'll quickly gain the experience you need to develop sophisticated Apple software, whether you're somewhat new to programming or just new to this platform. Get a quick hands-on tour of basic programming skills with the C language Learn how to use Interface Builder to quickly design and prototype your application's user interface Start using Objective-C by creating objects and learning memory management Learn about the Model-View-Controller (MVC) method of sharing data between objects Understand the Foundation value classes, Cocoa's robust API for storing common data types Become familiar with Apple's graphics frameworks, and learn how to make custom views with AppKit

Product Identifiers

Publisher
O'reilly Media, Incorporated
ISBN-10
0596804792
ISBN-13
9780596804794
eBay Product ID (ePID)
78662875

Product Key Features

Author
Scott Stevenson
Publication Name
Cocoa and Objective-C: Up and Running : Foundations of Mac, iPhone, and iPad Programming
Format
Trade Paperback
Language
English
Subject
Programming Languages / General, Software Development & Engineering / General, Hardware / Mobile Devices, General, Programming / Macintosh
Publication Year
2010
Type
Textbook
Subject Area
Computers
Number of Pages
416 Pages

Dimensions

Item Length
9.2 in
Item Height
0.8 in
Item Width
7 in
Item Weight
22.9 Oz

Additional Product Features

LCCN
2010-282733
Lc Classification Number
Qa76.76.O63
Table of Content
Preface; Who This Book Is For; How This Book Is Organized; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments;Chapter 1: Setup and First Run; 1.1 Download and Install Xcode; 1.2 Your First Application;Chapter 2: Thinking in Code: Basic C; 2.1 How Code Works; 2.2 How to Format Code; 2.3 Variables; 2.4 Functions; 2.5 Example: FirstProgram; 2.6 Scope; 2.7 Conditionals; 2.8 Example: ShoppingTrip; 2.9 Wrap Up;Chapter 3: Memory and Pointers: Advanced C; 3.1 Arrays; 3.2 Loops; 3.3 Text Strings; 3.4 Multidimensional Arrays; 3.5 Pointers; 3.6 Dynamic Memory; 3.7 Strings and Dynamic Memory; 3.8 Arrays of Strings; 3.9 Example: AddressBook; 3.10 Structs; 3.11 Header Files; 3.12 Compile and Run the HeaderFileTest Example; 3.13 Create Files for the Song Struct; 3.14 Final Example;Chapter 4: Thinking in Objects; 4.1 Structs and Classes; 4.2 Accessors; 4.3 Inheritance; 4.4 Composition; 4.5 Object Lifetime; 4.6 Built-in Classes;Chapter 5: Basic Objective-C; 5.1 NSString Basics; 5.2 Using Methods; 5.3 Accessors; 5.4 Creating Objects; 5.5 Basic Memory Management; 5.6 Declaring a Class; 5.7 Implementing a Class; 5.8 Example: PhotoInfo;Chapter 6: More Objective-C; 6.1 More on Memory Management; 6.2 Class Name Prefixes; 6.3 Properties; 6.4 64-Bit Objective-C; 6.5 Categories; 6.6 Introspection; 6.7 Protocols; 6.8 Dynamic Messaging; 6.9 Exceptions; 6.10 Example: DataCollector;Chapter 7: Foundation Value Classes; 7.1 NSString; 7.2 Mutability; 7.3 Core Foundation; 7.4 NSNumber; 7.5 NSData; 7.6 NSArray; 7.7 NSDictionary; 7.8 NSSet; 7.9 NSValue; 7.10 NSDate;Chapter 8: Basic Controls; 8.1 How to Use This Chapter; 8.2 Windows and Views; 8.3 Targets and Actions; 8.4 Outlets; 8.5 Datasources; 8.6 Bindings;Chapter 9: Designing Applications Using MVC; 9.1 About This Project; 9.2 Create the Project Files; 9.3 Create the User Interface; 9.4 Run the Application; 9.5 Preparing for Release;Chapter 10: Custom Views and Drawing; 10.1 Basic Geometry; 10.2 Basic Drawing; 10.3 Bezier Paths; 10.4 Images; 10.5 Shadows; 10.6 Gradients; 10.7 Refactoring View Code; 10.8 Text; 10.9 Handling Mouse and Keyboard Events;Chapter 11: The Final Word; 11.1 The List; 11.2 Websites; 11.3 Last Thought;Colophon;
Copyright Date
2010
Target Audience
Scholarly & Professional
Illustrated
Yes

Descripción del artículo del vendedor

Información de vendedor profesional

Thrift Books Global, LLC
TB Thrift Books
18300 Cascade Ave S
Ste 150
98188 Seattle, WA
United States
Mostrar información de contacto
:ocinórtcele oerroCmoc.skoobtfirht@yabe.selas
Certifico que todas mis actividades de venta cumplirán todas las leyes y reglamentos de la UE.
ThriftBooks

ThriftBooks

99% de votos positivos
17,7 millones artículos vendidos
Visitar tiendaContactar
Suele responder en 24 horas

Valoraciones detalladas sobre el vendedor

Promedio durante los últimos 12 meses

Descripción precisa
4.9
Gastos de envío razonables
5.0
Rapidez de envío
5.0
Comunicación
4.9
Registrado como vendedor profesional

Votos de vendedor (5.213.066)

a***l (201)- Votos emitidos por el comprador.
Último año
Compra verificada
Awesome seller, fast and reliable!
Ver todos los votos

Valoraciones y opiniones del producto

Todavía no hay valoraciones ni opiniones
Sé el primero en escribir una opinión.