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 #import <GLKit/GLKit.h> 11 #import <OpenGLES/EAGLDrawable.h> 12 13 @interface iphoneViewController : UIViewController <UITextFieldDelegate>{ 14 IBOutlet UITextField *textField; 15 IBOutlet UITextView *textView; 16 IBOutlet GLKView *glkView; 17 18 } 19 @property (retain, nonatomic) GLKView *glkView; 20 @property (nonatomic,retain) UITextField *textField; 21 @property (nonatomic,retain) UITextView *textView; 22 23 @end 24