Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint
Share this Page URL
Help

Chapter 5. Basic Objective-C > Implementing a Class

5.7. Implementing a Class

Now that the class name, instance variables, and methods are declared in Photo.h, I can add the method implementation in Photo.m:

#import "Photo.h" 

@implementation Photo 
    
- (NSString*) caption { 
  return caption;
}

- (NSString*) photographer {
  return photographer;
}

@end 


  

You are currently reading a PREVIEW of this book.

                                                                                        

Get instant access to over
$1 million worth of books and videos.

  

Start a Free Trial


  
  • Safari Books Online
  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint