Skip to Main Content
Xcode 5 Start to Finish: iOS and OS X Development
book

Xcode 5 Start to Finish: iOS and OS X Development

by Fritz Anderson
May 2014
Intermediate to advanced content levelIntermediate to advanced
624 pages
19h 43m
English
Addison-Wesley Professional
Content preview from Xcode 5 Start to Finish: iOS and OS X Development

A Graphing View

I’ve begged the question of what MPRPassCompletionView is. Create a new Objective-C subclass of NSView with that name. You get header and implementation files. MPRPassCompletionView will use the delegate pattern to pull its data from the model. That requires a @protocol to define the method through which the delegate will provide the data. Put this in MPRPassCompletionView.h:

#import <Cocoa/Cocoa.h>@class MPRPassCompletionView;@protocol MPRPassCompletionDelegate <NSObject>- (NSManagedObject *) MPRPassCompletion: (MPRPassCompletionView *) view                         gameAtIndex: (NSUInteger) index;@end@interface MPRPassCompletionView : NSView@property(nonatomic, assign) IBOutlet id<MPRPassCompletionDelegate> ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Xcode 6 Start to Finish: iOS and OS X Development, Second Edition

Xcode 6 Start to Finish: iOS and OS X Development, Second Edition

Fritz Anderson
Objective-C for Absolute Beginners: iPhone, iPad and Mac Programming Made Easy

Objective-C for Absolute Beginners: iPhone, iPad and Mac Programming Made Easy

Stefan Kaczmarek, Brad Lees, Gary Bennett, Mitch Fisher

Publisher Resources

ISBN: 9780133751031Purchase book