view IntroViewController.mm @ 49:178642d134a7 tip

xtra files
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Wed, 01 May 2013 17:34:33 +0100
parents a4908ad8c78e
children
line wrap: on
line source
//
//  IntroViewController.m
//  sonicZoom
//
//  Created by Robert Tubb on 29/01/2013.
//
//

#import "IntroViewController.h"
#import "testApp.h"
@interface IntroViewController ()

@end

@implementation IntroViewController

- (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.
}

- (void)setAppRef:(id)theOFApp{
    self.theOFAppRef = theOFApp;
    
}

- (IBAction)show:(id)sender
{
    self.theOFAppRef = sender;
    self.view.hidden = NO;
}
- (IBAction)hide:(id)sender
{
    self.view.hidden = YES;
    ((testApp *)self.theOFAppRef)->introHidden(YES);
    
}
- (IBAction)disagree:(id)sender
{
    // shut down the app
    self.view.hidden = YES;
    ((testApp *)self.theOFAppRef)->introHidden(NO);
}
- (void)dealloc {
    [_text release];
    [super dealloc];
}
- (void)viewDidUnload {
    [self setText:nil];
    [super viewDidUnload];
}
@end