annotate IntroViewController.h @ 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
rev   line source
rt300@24 1 //
rt300@24 2 // IntroViewController.h
rt300@24 3 // sonicZoom
rt300@24 4 //
rt300@24 5 // Created by Robert Tubb on 29/01/2013.
rt300@24 6 //
rt300@24 7 //
rt300@24 8
rt300@24 9 #import <UIKit/UIKit.h>
rt300@24 10
rt300@24 11 @interface IntroViewController : UIViewController
rt300@24 12
rt300@24 13 @property (nonatomic, assign) id theOFAppRef;
rt300@24 14 @property (retain, nonatomic) IBOutlet UILabel *text;
rt300@24 15
rt300@24 16 -(IBAction)hide:(id)sender;
rt300@24 17 -(IBAction)show:(id)sender;
rt300@24 18 -(IBAction)disagree:(id)sender;
rt300@24 19 -(void)setAppRef:(id)theOFApp;
rt300@24 20 @end