comparison IntroViewController.h @ 0:a223551fdc1f

First commit - copy from tweakathlon.
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Fri, 10 Oct 2014 11:46:42 +0100
parents
children 27cdf475aa4b
comparison
equal deleted inserted replaced
-1:000000000000 0:a223551fdc1f
1 //
2 // IntroViewController.h
3 // sonicZoom
4 //
5 // Created by Robert Tubb on 29/01/2013.
6 //
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @interface IntroViewController : UIViewController
12
13 @property (nonatomic, assign) id theOFAppRef;
14 @property (retain, nonatomic) IBOutlet UILabel *text;
15
16 -(IBAction)hide:(id)sender;
17 -(IBAction)show:(id)sender;
18 -(IBAction)disagree:(id)sender;
19 -(void)setAppRef:(id)theOFApp;
20 @end