MetaCipher
MetaCipher

Reputation: 274

iPhone OpenGLES App not Rendering

I am attempting to setup a simple OpenGLES project that doesn't use the interface builder and has as minimal code as possible. From what I can tell, the code that I have put together should work but it doesn't. I am basically at a loss now as to why it's not working.

Here's what I did: - Remove nib file - Remove reference in the plist file - Changed UIApplicationMain 4th parameter to @"AppDelegate" - Setup my files accordingly...

Full code is here: http://pastebin.com/6DawjP0b

Thanks!

Upvotes: 0

Views: 102

Answers (1)

bosmacs
bosmacs

Reputation: 7483

Try changing your [Window makeKeyWindow]; to [Window makeKeyAndVisible]; to ensure that the window is visible.

Upvotes: 1

Related Questions