comparison UsernameAlertViewController.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
comparison
equal deleted inserted replaced
-1:000000000000 0:a223551fdc1f
1 //
2 // iViewController.h
3 // oscSenderExample
4 //
5 // Created by Robert Tubb on 07/01/2013.
6 //
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface UsernameAlertViewController : NSObject <UIAlertViewDelegate, UITextFieldDelegate>
12
13 @property (strong,nonatomic) UIAlertView * alert;
14 @property (nonatomic, assign) id theOFAppRef;
15 -(void)showUserNamePrompt;
16 -(void)setAppRef:(id)theAppRef;
17
18 @end
19