在 Obj-C 中没有 Foundation Framework 是否可以实现标准 NS 类?
仅适用于标准 gcc Objective-C 标头。
最重要的是我对数组和字典感兴趣。
如果可能的话,那么哪些超类应该是子类?
Only with standard gcc Objective-C headers.
Most of all I am interesting in arrays and dictionaries.
If that's possible, then which superclasses should be subclasses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这并非易事。
每个 Objective C 对象都必须派生自 NSObject(它实现了运行时系统的接口),而 NSObject 是 Foundation 的一部分。
或者,你可以尝试,但你必须重新实现很多低级的东西......
It is not easily possible.
Every Objective C object must derive from NSObject (which implement the interface to the runtime system), and NSObject is part of Foundation.
Or, you could try, but you would have to re-implement a lot of low-level things...