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