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