Difference between revisions of "Objective-C 2.0 Essentials"

From Techotopia
Jump to: navigation, search
Line 122: Line 122:
 
#* [[Objective-C Inheritance|Extending the Functionality of a Subclass]]
 
#* [[Objective-C Inheritance|Extending the Functionality of a Subclass]]
 
#* [[Objective-C Inheritance|Overriding Inherited Methods]]<br><br>
 
#* [[Objective-C Inheritance|Overriding Inherited Methods]]<br><br>
# [[Pointers and Indirection is Objective-C]]<br><br>
+
# [[Pointers and Indirection is Objective-C]]
 +
#* [[Pointers and Indirection is Objective-C|How Variables are Stored]]
 +
#* [[Pointers and Indirection is Objective-C|An Overview of Indirection]]
 +
#* [[Pointers and Indirection is Objective-C|Indirection and Objects]]
 +
#* [[Pointers and Indirection is Objective-C|Indirection and Object Copying]]<br><br>
 
# [[Objective-C Dynamic Binding and Typing with the id Type]]
 
# [[Objective-C Dynamic Binding and Typing with the id Type]]
 
#* [[Objective-C Dynamic Binding and Typing with the id Type|Static Typing vs Dynamic Typing]]
 
#* [[Objective-C Dynamic Binding and Typing with the id Type|Static Typing vs Dynamic Typing]]
Line 226: Line 230:
 
#* [[Constructing and Manipulating Paths with NSPathUtilities|Standardizing a Path]]
 
#* [[Constructing and Manipulating Paths with NSPathUtilities|Standardizing a Path]]
 
#* [[Constructing and Manipulating Paths with NSPathUtilities|Extracting the Components of a Path]]<br><br>
 
#* [[Constructing and Manipulating Paths with NSPathUtilities|Extracting the Components of a Path]]<br><br>
 +
# [[Copying Objects in Objective-C]]<br><br>
 
# [[Using Objective-C Preprocessor Directives]]
 
# [[Using Objective-C Preprocessor Directives]]
 
#* [[Using Objective-C Preprocessor Directives|The #define Statement]]
 
#* [[Using Objective-C Preprocessor Directives|The #define Statement]]

Revision as of 18:44, 13 November 2009

This on-line book is currently under development. It is scheduled for completion in November 2009.

  1. About Objective-C Essentials
  2. The History of Objective-C
  3. Installing Xcode and Compiling Objective-C on Mac OS X
  4. Installing and using GNUstep and Objective-C on Windows
  5. Installing and Using GNUstep and Objective-C on Linux
  6. Building and Installing GNUstep on Linux
  7. Objective-C 2.0 Data Types
  8. Working with Variables and Constants in Objective-C
  9. Objective-C Operators and Expressions
  10. Commenting Objective-C Code
  11. Objective-C Flow Control with if and else
  12. The Objective-C switch Statement
  13. Objective-C Looping - The for Statement
  14. Objective-C Looping with do and while Statements
  15. An Overview of Objective-C Object Oriented Programming
  16. Writing Objective-C Class Methods
  17. Objective-C - Data Encapsulation, Synthesized Accessors and Dot Notation
  18. Objective-C Inheritance
  19. Pointers and Indirection is Objective-C
  20. Objective-C Dynamic Binding and Typing with the id Type
  21. Objective-C Variable Scope and Storage Class
  22. An Overview of Objective-C Functions
  23. Objective-C Enumerators
  24. An Overview of the Objective-C Foundation Framework
  25. Working with String Objects in Objective-C
  26. Understanding Objective-C Number Objects
  27. Working with Objective-C Array Objects
  28. Objective-C Dictionary Objects
  29. Working with Directories in Objective-C
  30. Working with Files in Objective-C
  31. Constructing and Manipulating Paths with NSPathUtilities
  32. Copying Objects in Objective-C

  33. Using Objective-C Preprocessor Directives