I want to see EXACTLY how it creates an array. How can I view the .m files that show how it's done?
|
|
|
|
|
|
|
As @Ken mentioned, you can't see the source (although you can disassemble the method via gdb). The method itself creates an immutable (can't be changed), autoreleased copy of the given array. The following are identical in behavior:
Pick whichever one you like based on brevity, I guess :-). |
||||||
|
|
|
GNUstep, the GNU implementation of the OPENSTEP spec from which Cocoa and Cocoa Touch descend, implements
http://svn.gna.org/viewcvs/gnustep/libs/base/trunk/Source/NSArray.m?view=markup |
||
|
|
|
|
If you're asking what's the purpose of
Is equivalent to:
I'd say it's there for convenience to use when it fits your style. |
||
|
|
|
|
No, Cocoa is not open source. If you have a question, you should just ask it. This would be one valid way to implement it:
You can read the GNUStep source for NSArray, but be aware that this is an alternate implementation of the Cocoa APIs. |
|||
|
|
