34,333
edits
Changes
→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: