Objective-C recipes a problem-solution approach

Objective-C Recipes provides a problem solution approach for dealing with key aspects of Objective-C programming, ensuring you have the indispensable reference you need to successfully execute common programming tasks. You will see how to use the unique features of the Objective-C programming langua...

Descripción completa

Detalles Bibliográficos
Autor principal: Campbell, Matthew (-)
Formato: Libro electrónico
Idioma:Inglés
Publicado: [Berkeley, Calif.] : New York : Apress ; Distributed to the book trade worldwide by Springer Science+Business Media c2012.
Edición:1st ed. 2012.
Materias:
Ver en Biblioteca Universitat Ramon Llull:https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009629428906719
Tabla de Contenidos:
  • Title Page; Copyright Page; Contents at a Glance; Table of Contents; About the Author; About the Technical Reviewer; Acknowledgments; Prefance; Chapter 1: Application Development; 1.1 Creating a Terminal Application; Problem; Solution; How It Works; The Code; Usage; 1.2 Writing to the Console; Problem; Solution; How It Works; The Code; Usage; 1.3 Creating a New Custom Class; Problem; Solution; How It Works; The Code; Usage; 1.4 Code Property Assessors; Problem; Solution; How It Works; The Code; Usage; 1.5 Code Property Assessors with @synthesize; Problem; Solution; How It Works; The Code
  • Usage1.6 Adding a Class Method to a Custom Class; Problem; Solution; How It Works; The Code; Usage; 1.7 Adding an Instance Method to a CustomClass; Problem; Solution; How It Works; Usage; 1.8 Extending a Class with a Category; Problem; Solution; How It Works; The Code; Usage; 1.9 Creating a Mac Window-BasedApplication from Terminal; Problem; Solution; How It Works; App Delegate; Application; The Code; Usage; 1.10 Adding a User Control to a MacApplication; Problem; Solution; How It Works; The Code; Usage; 1.11 Creating a Mac Window-BasedApplication From Xcode; Problem; Solution; How It Works
  • The CodeUsage; 1.12 Creating an iOS Application from Xcode; Problem; Solution; How It Works; The Code; Usage; 1.13 Adding User Controls to an iOSApplication with Target-Action; Problem; Solution; How It Works; The Code; Usage; 1.14 Adding User Controls to an iOSApplication with Delegation; Problem; Solution; How It Works; The Code; Usage; Chapter 2: Working With Strings and Numbers; 2.1 Creating a String Object; Problem; Solution; How It Works; The Code; Usage; 2.2 Reading Strings from Files on a Mac; Problem; Solution; How It Works; The Code; Usage; 2.3 Reading Strings from Files on iOS
  • ProblemSolution; How It Works; The Code; Usage; 2.4 Writing Strings to Files on a Mac; Problem; Solution; How It Works; The Code; Usage; 2.5 Writing Strings To Files On iOS; Problem; Solution; How It Works; The Code; Usage; 2.6 Comparing Strings; Problem; Solution; How It Works; The Code; Usage; 2.7 Manipulating Strings; Problem; Solution; How It Works; The Code; Usage; 2.8 Searching Through Strings; Problem; Solution; How It Works; The Code; Usage; 2.9 Localizing Strings; Problem; Solution; How It Works; The Code; Usage; 2.10 Converting Numbers to StringsProblem; Problem; Solution
  • How It WorksThe Code; Usage; 2.11 Converting Strings to Numbers; Problem; Solution; How It Works; The Code; Usage; 2.12 Formatting Numbers; Problem; Solution; How It Works; The Code; Usage; Chapter 3:Working with Object Collections; 3.1 Creating an Array; Problem; Solution; How It Works; The Code; Usage; 3.2 Referencing Objects in Arrays; Problem; Solution; How It Works; The Code; Usage; 3.3 Obtaining the Array Count; Problem; Solution; How It Works; The Code; Usage; 3.4 Iterating Through an Array; Problem; Solution; How It Works; The Code; Usage; 3.5 Sorting an Array; Problem; Solution
  • How It Works