什么是 __NSArrayI 和 __NSArrayM?如何转换为NSArray?
什么是 __NSArrayI 和 __NSArrayM?
__NSArrayI(或M)导致“无法识别的选择器”错误。
如何转换为NSArray?
我做了测试来解析 json、twitter api。
http://api.twitter.com/1/followers/ids.json ?cursor=-1&screen_name=twitterapi
==>工作正常。解析的对象是 NSCFDictionary 类。 (该字典包含 __NSArrayM 类)
http://api.twitter.com/1/statuses /user_timeline.json?&screen_name=twitterapi
==>错误。解析的对象是 __NSArrayM 类。
What is __NSArrayI and __NSArrayM?
__NSArrayI(or M) cause "unrecognized selector" error.
How to convert to NSArray?
I did test to parse json, twitter api.
http://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=twitterapi
==> works fine. parsed object is NSCFDictionary class.
(This dictionary contains __NSArrayM class)
http://api.twitter.com/1/statuses/user_timeline.json?&screen_name=twitterapi
==> error. parsed object is __NSArrayM class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
__NSArrayI
是不可变数组的代码字 - 即,您无法更改的“常规”NSArray
。__NSArrayM
是可变数组的代码字 - 即NSMutableArray
。在NSMutableArray
中,您可以添加和删除项目。__NSArrayI
is a code-word for an immutable array - that is, a "regular"NSArray
which you cannot change.__NSArrayM
is a code-word for a mutable array - that is,NSMutableArray
. InNSMutableArray
, you can add and remove items.这些是私有 api 的类。 是一个项目,您可以在其中看到私有 api 的所有类。您不允许在
应用程序商店
的应用程序中使用它们,但有时了解如何访问对象以及它是什么类型的对象也很有用。它们无法转换。我认为,在调试器中获取这些类型的对象只是内部类的表示,适用于您在项目中使用的类。了解它是什么类型,还可以让您了解在代码中哪里查找问题。在这里您可以看到两者的简短查找:
__NSArrayI
__NSArrayM
These are classes of the private api. There is a project where you can see all classes of the private api. You are not allowed to use them inside an app for the
app store
but sometimes it is useful too see how to access the objects and also what kind of object it is. They cannot be converted. I think, getting these kind of objects inside the debugger is just the representation of internal classes, for the classes you are using inside your project. Knowing what kind of class it is, lets you also understand where to look for the problem inside your code.Here you can see a short lookup of both:
__NSArrayI
__NSArrayM
这是私人课程。您不应该想要访问它们或转换它们。
如果我没记错的话
NSArray
是_NSArray
的子类。如果您要向数组添加/删除一些对象,请检查它是否是可变类型:
NSMutableArray
It is private classes. You shouldn't want to access them or moreover convert them.
If I'm not mistaken
NSArray
is subclass of_NSArray
.If you are adding/removing some objects to/from your array check that it is of mutable type :
NSMutableArray