こんにちは、OpenGl ES のエキスパートです。
UIView の上に GLKView を追加したことがありますか?
ここで試しているのは、ios 6 の標準の OpenGl ES テンプレートを使用することです。すべてがセットアップされているため、GLKViewController を使用しています。次に、GLKViewController.view を別の UIViewController のビューにサブビューとして追加しようとしていますが、問題は GLKViewController で update() が呼び出されないため、アニメーションがないことです。ただし、最初のフレームはレンダリングされます。
これを行う方法について何か考えがありますか?または、同じ GLKViewController に UIView と GLKView を配置する必要がありますか?
前もって感謝します。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.
UIViewController* topViewController = [[TopViewController alloc] init];
UIImageView* uiImageView = [[UIImageView alloc] initWithFrame:self.window.frame];
NSString *imgFrontFilepath = [[NSBundle mainBundle] pathForResource:@"front" ofType:@"png"];
UIImage* frontImg = [[UIImage alloc] initWithContentsOfFile:imgFrontFilepath];
[uiImageView setImage:frontImg];
[topViewController setView:uiImageView];
GLKViewController* glkViewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
// glkViewController.paused = NO;
[[topViewController view] addSubview:[glkViewController view]];
self.viewController = topViewController; //[[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
self.window.rootViewController = topViewController; //self.viewController;
[self.window makeKeyAndVisible];
return YES;
}