如何从 ES1Renderer 调用 EAGLView 的方法?
使用标准 OpenGL ES iPad 模式,我们得到了这样的“结构”。我读过一些有关委托、协议的内容,但仍然没有得到针对此特定目的的直接答案。请赐教。
我为什么需要这个?好吧,所有操作都在 ES1Renderer 中进行,我想要 [EAGLView setUserInteractionEnabled:true];
例如,这给了我:
“EAGLView”可能不会响应 '+setUserInteractionEnabled:'
Using the standard OpenGL ES iPad pattern we get such 'structure'. I've read some about delegating, protocols, but still got no direct answer for this particular purpose. Please enlighten me.
Why would I need this? Well all the action goes on in ES1Renderer and I want to [EAGLView setUserInteractionEnabled:true];
for example, which gives me:
'EAGLView' may not respond to
'+setUserInteractionEnabled:'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在向类而不是实例发送消息。您需要一个
EAGLview
类型的对象来发送setUserInteractionEnabled:
消息。喜欢:
You're sending a message to a class, not an instance. You'd need an object of type
EAGLview
to send thesetUserInteractionEnabled:
message to.Like: