Why am I not getting a grey background in this program
问题 I followed the tutorial on this page: http://iphone-3d-programming.labs.oreilly.com/ch01.html I got down to the part where it says, "Compile and build and you should now see a solid gray screen. Hurray!" However, when I ran the program, I just get a black screen. These are what the files look like: HelloArrowAppDelegate.h #import <UIKit/UIKit.h> #import "GLView.h" @interface HelloArrowAppDelegate : NSObject <UIApplicationDelegate> { UIWindow *m_window; GLView* m_view; } @end