Skip to content

Instantly share code, notes, and snippets.

@MaxGabriel
Created February 12, 2012 21:45
Show Gist options
  • Save MaxGabriel/1811001 to your computer and use it in GitHub Desktop.
Save MaxGabriel/1811001 to your computer and use it in GitHub Desktop.
CS 193p Fall 2011 Assignment 3 Graphing Calculator--Task 3: Delegation
@class GraphView;
@protocol GraphViewDataSource
- (float)deltaY:(GraphView *)sender;
@end
@interface GraphView : UIView
@property (nonatomic) CGFloat xValue;
@property (nonatomic, weak) IBOutlet id <GraphViewDataSource> dataSource;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment