rt300@26: // rt300@26: // HelpViewController.m rt300@26: // sonicZoom rt300@26: // rt300@26: // Created by Robert Tubb on 01/02/2013. rt300@26: // rt300@26: // rt300@26: rt300@26: #import "HelpViewController.h" rt300@26: rt300@26: @interface HelpViewController () rt300@26: rt300@26: @end rt300@26: rt300@26: @implementation HelpViewController rt300@26: rt300@26: - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil rt300@26: { rt300@26: self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; rt300@26: if (self) { rt300@26: // Custom initialization rt300@26: } rt300@26: return self; rt300@26: } rt300@26: rt300@26: - (void)viewDidLoad rt300@26: { rt300@26: [super viewDidLoad]; rt300@26: // Do any additional setup after loading the view from its nib. rt300@26: } rt300@26: rt300@26: - (void)didReceiveMemoryWarning rt300@26: { rt300@26: [super didReceiveMemoryWarning]; rt300@26: // Dispose of any resources that can be recreated. rt300@26: } rt300@26: rt300@26: -(IBAction)show:(id)sender{ rt300@26: self.view.hidden = NO; rt300@26: } rt300@26: rt300@26: - (IBAction)hide:(id)sender rt300@26: { rt300@26: self.view.hidden = YES; rt300@26: //((testApp *)self.theOFAppRef)->introHidden(YES); rt300@26: rt300@26: } rt300@26: @end