annotate UsernameAlertViewController.h @ 49:178642d134a7 tip

xtra files
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Wed, 01 May 2013 17:34:33 +0100
parents 3d627dce8bf0
children
rev   line source
rt300@16 1 //
rt300@16 2 // iViewController.h
rt300@16 3 // oscSenderExample
rt300@16 4 //
rt300@16 5 // Created by Robert Tubb on 07/01/2013.
rt300@16 6 //
rt300@16 7 //
rt300@16 8
rt300@16 9 #import <Foundation/Foundation.h>
rt300@16 10
rt300@31 11 @interface UsernameAlertViewController : NSObject <UIAlertViewDelegate, UITextFieldDelegate>
rt300@16 12
rt300@31 13 @property (strong,nonatomic) UIAlertView * alert;
rt300@42 14 @property (nonatomic, assign) id theOFAppRef;
rt300@16 15 -(void)showUserNamePrompt;
rt300@42 16 -(void)setAppRef:(id)theAppRef;
rt300@42 17
rt300@16 18 @end
rt300@16 19