1*fce0c873SBarry Smith // 2*fce0c873SBarry Smith // iphoneViewController.h 3*fce0c873SBarry Smith // iphone 4*fce0c873SBarry Smith // 5*fce0c873SBarry Smith // Created by Barry Smith on 5/12/10. 6*fce0c873SBarry Smith // Copyright __MyCompanyName__ 2010. All rights reserved. 7*fce0c873SBarry Smith // 8*fce0c873SBarry Smith 9*fce0c873SBarry Smith #import <UIKit/UIKit.h> 10*fce0c873SBarry Smith 11*fce0c873SBarry Smith @interface iphoneViewController : UIViewController <UITextFieldDelegate>{ 12*fce0c873SBarry Smith IBOutlet UITextField *textField; 13*fce0c873SBarry Smith IBOutlet UITextView *textView; 14*fce0c873SBarry Smith NSString *outPut; 15*fce0c873SBarry Smith } 16*fce0c873SBarry Smith @property (nonatomic,retain) UITextField *textField; 17*fce0c873SBarry Smith @property (nonatomic,retain) UITextView *textView; 18*fce0c873SBarry Smith @property (nonatomic,retain) NSString *outPut; 19*fce0c873SBarry Smith 20*fce0c873SBarry Smith @end 21*fce0c873SBarry Smith 22