私は OpenGL を初めて使用します。GLKView の上にボタンを表示しようとしましたが、ボタンが表示されません。これが私がやったことです...
context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
if (!_context) {
NSLog(@"Failed to create ES context");
}
glview = [[GLKView alloc] initWithFrame:self.view.bounds];
glview.context = _context;
glview.delegate = (id)self;
[self.view addSubview:glview];
編集:
[glview addSubview:call_btn];
UIViewController を作成し、GLKView をサブビューとして self.view に追加しました。上記の問題以外はすべて正常に動作しています (glkview に UIbutton が表示されません)。それを行う方法についてのアイデア。