Difference between revisions of "Objective-C 2.0 Essentials"

From Techotopia
Jump to: navigation, search
Line 196: Line 196:
 
#* [[Working with Directories in Objective-C|Getting the Attributes of a File or Directory]]<br><br>
 
#* [[Working with Directories in Objective-C|Getting the Attributes of a File or Directory]]<br><br>
 
# [[Working with Files in Objective-C]]
 
# [[Working with Files in Objective-C]]
 +
#* [[Working with Files in Objective-C|Creating an NSFileManager Instance]]
 +
#* [[Working with Files in Objective-C|Checking if a File Exists]]
 +
#* [[Working with Files in Objective-C|Comparing the Contents of Two Files]]
 +
#* [[Working with Files in Objective-C|Checking if a File is Readable/Writable/Executable/Deletable]]
 +
#* [[Working with Files in Objective-C|Moving/Renaming a File]]
 +
#* [[Working with Files in Objective-C|Copying a File]]
 +
#* [[Working with Files in Objective-C|Removing a File]]
 +
#* [[Working with Files in Objective-C|Creating a Symbolic Link]]
 +
#* [[Working with Files in Objective-C|Reading and Writing Files with NSFileManager]]
 +
#* [[Working with Files in Objective-C|Working with Files using the NSFileHandle Class]]
 +
#* [[Working with Files in Objective-C|Creating an NSFileHandle Object]]
 +
#* [[Working with Files in Objective-C|NSFileHandle File Offsets and Seeking]]
 +
#* [[Working with Files in Objective-C|Reading Data from a File]]
 +
#* [[Working with Files in Objective-C|Writing Data to a File]]
 +
#* [[Working with Files in Objective-C|Truncating a File]]</br><br>

Revision as of 18:15, 11 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. Objective-C Flow Control with if and else
  11. The Objective-C switch Statement
  12. Objective-C Looping - The for Statement
  13. Objective-C Looping with do and while Statements
  14. An Overview of Objective-C Object Oriented Programming
  15. Writing Objective-C Class Methods
  16. Objective-C - Data Encapsulation, Synthesized Accessors and Dot Notation
  17. Objective-C Inheritance
  18. Objective-C Dynamic Binding and Typing with the id Type
  19. Objective-C Variable Scope and Storage Class
  20. An Overview of Objective-C Functions
  21. Objective-C Enumerators
  22. An Overview of the Objective-C Foundation Framework
  23. Working with String Objects in Objective-C
  24. Understanding Objective-C Number Objects
  25. Working with Objective-C Array Objects
  26. Objective-C Dictionary Objects
  27. Working with Directories in Objective-C
  28. Working with Files in Objective-C