Is the parameter for NSKeyedArchiver archivedDataWithRootObject: supposed to be the array I a开发者_JAVA技巧m trying to save, or the array converted into NSData?Yuji\'s answer is right. but more accur
My app runs fine in the simulator, but when running on the device, it terminates with SIGABRT. I have narrowed it down to the following code:
Let\'s say I create an object like this: Person: NSString *name; NSString *phone; NSString *address I create several of these objects. Then I create an NSMutableArray called people and store them i
I use an NSXMLParser to parse YouTube\'s API and I get all the content I want and put it into a class called Video. When I am writing to the class from inside parserDidEndElement and I end that video
I am having a nsmutab开发者_StackOverflow中文版le array and in that nearly 50 -60 object having different names ,and can i sort this array in alphabetical order (Is it possible, How?)For a simple sort
I\'m doing this: for(int i=0;i>count;i++) { NSArray *temp=[[NSArray alloc]initWIthObjects]i,nil]; NSLog(@\"%i\",temp);
I ha开发者_开发百科ve an array with 10 objects and I put this into a table. How can I edit one of the individual objects in the array or refresh it?
I have a bunch of NSStrings in a NSMutableArray. I have added them to the array and now I want to loop through the array, getting each object in it (the strings) and set them to a common value @\"No L
Basically I have an NSMutableArray set up like so, with instances of another class as the array elements.
I currently have an NSMutableArray which stores a collection of Video objects. Each Video object has an ID and TITLE.