从大量上下文中提取主要上下文
我有很多 CGContextRef(为了说 4)。我想从这些上下文中获取数据并更新一个全局上下文,以便所有上下文的数据都应在屏幕上的适当位置更新,并且我必须保持全局(主)上下文相对于其他上下文中的更新进行更新。
我怎样才能实现这一目标以及实现这一目标的最佳方法是什么?
提前致谢。我非常感谢您抽出时间。
I have lots of CGContextRef(for sake say 4). I want to get the data from those context and update one global context such that all context's data should be updated at appropriate location on scree and I have to keep the global(main) context updated with respect to updates in other context.
How can I achieve this and what could be the best way to do this?
Thanks in Advance. I really appreciate for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您拥有的其他上下文(除了主上下文)请确保这些上下文是位图上下文。然后您可以根据它们创建一个位图并将该位图放在主上下文上。
Other contexts you have, (apart from main context) mak sure those context are Bitmap Context. Then you can create a bitmap out of them and put that bitmap over main context.