使用 Objective-C 实现 iPhone 快速应用程序切换
我正在使用 Objective-C/C++,并且有一个 Objective-C 类,它是 C++ 类的包装器,为了使用快速应用程序切换,我需要注意什么特殊问题吗?
据我了解,iPhone 会自动神奇地保存 Objective-C 对象的状态,但我不确定是否需要做任何特殊的工作来启用对 C++ 对象的支持。我的 C++ 类没有任何虚函数。
I'm using Objective-C/C++ and I have an Objective-C class that is a wrapper for a C++ class, are there any special concerns I need to be aware of in order to use fast app switching?
It is my understanding that the iPhone will auto-magically save state for Objective-C objects, but I'm not sure if I need to do any special work to enable support for C++ objects. My C++ class does not have any virtual functions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速应用程序切换是指多任务处理吗?
您不需要做任何额外的事情 - iOS 4 将透明地处理任务挂起和恢复,除非您需要执行后台任务,无论您使用的是 Objective C++ 还是普通的 Objective C。
By fast app switching you mean multitasking?
There's nothing additional you need to do - iOS 4 will handle the task suspension and resume transparently, unless you need to perform background tasks, regardless of whether you're using objective c++ or just plain objective c.