greetings Cocoa masters - this simple issue has me crawling the walls. I hav开发者_StackOverflow中文版e a custom class called Movie which consists of a bunch of properties and a few collections. I am
I have a NSManagedObject with a NSMutableArray as attribute: @interface MyObject :NSManagedObject { } @property (nonatomic, retain) id a1;
Does NSMutableArray support recursive serialization? E.g. will a NS开发者_开发问答MutableArray of NSMutableArray\'s serialize the entirety of the heirarchy out when calling writeToFile?
I am newbie with Cocoa Touch, I have a problem that I try to figure out. I will appreciate if anyone could help.
I have a NSMutableArray of names of files in my app documents folder. Now I want to make an array of file paths of those files which have names in the above array.
i have created NSMutableDictionary with 10 keys.Now i want to access NSMutableDictionary keys in a same order as it was added to NSMutableDictionary (using Set开发者_C百科Value:* forKey:* );
I have stack category for NSMutableArray t开发者_StackOverflow社区hat I use in Class A @implementation NSMutableArray (StackUtil)
I have a mutableArray that I fill up with objects. When I try to refill the array, I first use removeAllObjects - which produces a memory leak...
I\'m having a bit of trouble accessing what I think element should be in my array. I am getting results from a webservice and trying to make sense of them.
I\'ve been trying to implement NSXMLParser and so far I\'ve had memory issues, performance issues or it doesn\'t work.