annotate BottomTabViewController.h @ 30:c0a6f7c66719

Josh M test "in house" version 0.1
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Wed, 27 Feb 2013 11:39:07 +0000
parents f42a00e3f22d
children 790939017078
rev   line source
rt300@24 1 //
rt300@24 2 // BottomTabViewController.h
rt300@24 3 // sonicZoom
rt300@24 4 //
rt300@24 5 // Created by Robert Tubb on 31/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 BottomTabViewController : UIViewController
rt300@24 12
rt300@24 13 @property (nonatomic, assign) id theOFAppRef;
rt300@25 14 @property (retain, nonatomic) IBOutlet UISegmentedControl *interfaceSelector;
rt300@24 15
rt300@24 16
rt300@24 17 -(IBAction)show:(id)sender;
rt300@24 18 -(void)setAppRef:(id)theOFApp;
rt300@24 19 - (IBAction)interfaceSelected:(id)sender;
rt300@24 20
rt300@24 21 @end