Created
April 24, 2011 13:16
-
-
Save jlebrech/939540 to your computer and use it in GitHub Desktop.
Controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "attributeEditController.j" | |
... | |
attribController = [[AttributeEditController alloc] initWithCibName:"attributeEditController" bundle:nil]; | |
[verticalSplitter addSubview:[attribController view]]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation AttributeEditController : CPViewController | |
{ | |
@outlet CPButton down; | |
@outlet CPButton up; | |
@outlet CPButton add; | |
@outlet CPButton del; | |
@outlet CPScrollView attributes; | |
} | |
- (void)loadView | |
{ | |
} | |
- (void)awakeFromCib | |
{ | |
} | |
- (IBAction) upClickedAction:(id)sender | |
{ | |
} | |
- (IBAction) downClickedAction:(id)sender | |
{ | |
} | |
- (IBAction) addClickedAction:(id)sender | |
{ | |
} | |
- (IBAction) delClickedAction:(id)sender | |
{ | |
} | |
@end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment