Changes

Jump to: navigation, search

An Overview of Objective-C Object Oriented Programming

20 bytes added, 19:35, 14 October 2009
Declaring an Objective-C Class Implementation
The next step in creating a new class in Objective-C is to write the code for the methods we have already declared. This is performed in the ''@implementation'' section of the class definition. An outline implementation is structured as follows:
<tt>@implementation ''NewClassName''<br>:::''ClassMethods''<br>@end</tt>
In order to implement the methods we declared in the ''@interface'' section, therefore, we need to write the following:

Navigation menu