Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 iPhone 的相机视图前放置一个 3D 对象。对于我正在使用的相机视图AVFoundation。我尝试创建一个GLKView并将其作为子视图添加到显示相机视图的视图中。现在我面临的问题是如何调用update函数。我是否drawInRect每次都手动调用以重绘对象?谢谢
AVFoundation
GLKView
update
drawInRect
除非您真的知道自己在做什么,否则永远不要自己调用 drawInRect。
设置一个定时器(可以是CADisplayLink类型)并调用glkview显示方法:
[self.drawingSpace display];