Mercurial > hg > soniczoomios
view HelpViewController.m @ 44:a1e75b94c505
Snap to eval points. Double tap to go to preset (doesn't quite work yet). Coloured locks. Changed Question 2. Fixed some leaks.
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Mon, 22 Apr 2013 18:32:34 +0100 |
parents | 2e1fdac115af |
children |
line wrap: on
line source
// // HelpViewController.m // sonicZoom // // Created by Robert Tubb on 01/02/2013. // // #import "HelpViewController.h" @interface HelpViewController () @end @implementation HelpViewController - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } -(IBAction)show:(id)sender{ self.view.hidden = NO; } - (IBAction)hide:(id)sender { self.view.hidden = YES; //((testApp *)self.theOFAppRef)->introHidden(YES); } @end