Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
10k views

Copy & mutableCopy?

What is the difference between the "copy" & "mutableCopy"? EDIT_001: My original post was a bit of a mess, partly due to a lack of understanding and partly due to a bit of pilot error on my ...
8
votes
5answers
91 views

Why zone is allway nil while implementing NSCopying?

It may be simple question, but why implementing NSCopying protocol in my class, I get zone == nil - (id)copyWithZone:(NSZone *)zone { if (zone == nil) NSLog(@"why this is allways nil"); ...
7
votes
3answers
372 views

Best practice for copying private instance vars with NSCopying

I might be missing something obvious here, but I'm implementing NSCopying on one of my objects. That object has private instance variables that are not exposed via getters, as they shouldn't be used ...
6
votes
2answers
912 views

iPhone : (id)copyWithZone:(NSZone *)zone : what is “zone” for?

When implementing this method of NSCopying in a class to enable copy, what is the zone param use ? If I set a new object, I do not need to alloc it with allocWithZone as an alloc is just enough... I'm ...
6
votes
3answers
840 views

When is NSCopying needed?

I know it's needed if your object will be used as a key in an NSDictionary. Are there any other times like this that NSCopying is required? If I think I don't need my model objects to conform to ...
5
votes
1answer
424 views

Implementing NSCopying in Subclass of Subclass

Hey guys, I have a small class hierarchy that I'm having trouble implementing copyWithZone: for. I've read the NSCopying documentation, and I can't find the correct answer. Take two classes: Shape ...
4
votes
1answer
75 views

What is the meaning of “zone” in copyWithZone:?

I was going through "Pro. Objective-C Design Patterns for iOS" by Chung and found _sharedSinglton = [[super allocWithZone: NULL] init]; I looked in Apple's documentation for NSCopying as well, but ...
4
votes
1answer
373 views

UIView as dictionary key?

I want to have a NSDictionary that maps from UIViews to something else. However, since UIViews do not implement the NSCopying protocol, I can't use them directly as dictionary keys.
4
votes
3answers
2k views

NSManagedObject as NSDictionary key?

In my app, I have a NSDictionary whose keys should be instances of a subclass of NSManagedObject. The problem, however, is that NSManagedObject does not implement the NSCopying protocol which means ...
3
votes
1answer
96 views

Should I check for nil in copyWithZone:?

In the Sketch example, in -[<NSCopying> copyWithZone:] is not checked if -[<NSObject> init] returns nil: - (id)copyWithZone:(NSZone *)zone { SKTGraphic *copy = [[[self class] alloc] ...
3
votes
2answers
313 views

NSCopyObject considered harmful?

In the Xcode documentation for NSCopyObject, the special considerations section states: This function is dangerous and very difficult to use correctly. It's use as part of copyWithZone: by any ...
3
votes
2answers
678 views

Why doesn't UIView (or it's subclasses) adopt the NSCopying Protocol?

Can a Cocoahead please explain why UIView and it's sub classes don't adopt the NSCopying Protocol? I can see, philosophically, why UITouch would not be copy compliant, as it's a very temporal object. ...
2
votes
2answers
55 views

Questions about duplicating last object of a NSArray

I've a NSArray of MyObjects. I want to duplicate the last object of my array. In other terms, I want to add a new object to the array that's exactly the same of the last one. I tried with: id ...
2
votes
1answer
343 views

Proper way to copy a readonly NSMutableArray

I have an object with a readonly property that I am trying to implement NSCopying for. It has a mutableArray called "subConditions" (which holds "SubCondition" objects). I have made it readonly ...
2
votes
1answer
566 views

make UIImage conform to the NSCopying protocol

The question is quite simple, I need to have an UIImage conform to NSCopying protocol but I have absolutely no idea on where to start to achieve this. Do you have any pointer to help me? Thanks in ...
2
votes
1answer
656 views

Enabling the NSCopying protocol in a class

I have a class that has been derived from NSObject. How can copy be enabled like [object copy]? This is for an iPhone application.
1
vote
1answer
323 views

Copying Multi-Dimensional NSMutableArray

I'm currently working on a Sudoku application, the numbers are stored within a Multi-Dimensional NSMutableArray of NSNumbers. I keep an array in my SudokuGridView, for displaying the numbers in the ...
0
votes
1answer
18 views

Can't copy NSMutableArray to property

I have read countless questions surrounding the copying of arrays on both this site and others, but none directly addresses the problem I'm having. I have declared and synthesized a property called ...
0
votes
1answer
36 views

data type not checked when copy method is used in assignment

I have a doubt regarding copy Overview: I have 2 classes namely Car and MutableCar Both these classes conform to the protocol NSCopying The method copy would return an instance of Car Question ...
0
votes
1answer
41 views

Save CoreData result array even after it is deleted from the CoreData

I want to save the records in an array and delete them from the CoreData. I have tried using NSCopying but it seems that copyWithZone doesn't work on NSManagedObject. I am really stuck, any help will ...
0
votes
2answers
131 views

NSCopying, copyWithZone and NSDictionary

Firstly I would like confirmation that I have understood NSCopying correctly ... In order to use a simple NSObject subclass as a key in an NSDictionary I must have it implement the NSCopying ...
0
votes
1answer
160 views

NSCopying and copyWithZone: - should they return [self retain] or something else?

I'm having a hard time understanding copyWithZone. I know it's supposed to return a copy, but if I add an object to a dictionary, it adds a 'copyWithZone' object to the dictionary. If I make an ...
0
votes
3answers
203 views

Memory Leak on device when using mutableCopy

I thought that I was really close to release this new App of mine when I ran into a dead end. My code works without memory leaks in the simulator (Xcode 4.0.2) but reports memory leaks on my devices. ...
0
votes
1answer
147 views

Copying a UIImageView subclass

I have several objects in an array. These objects are from a UIImageView subclass. These objects' class has several @synthesized properties. At some point I have to create a duplicate of an object ...
0
votes
2answers
570 views

copy objects from one NSMutableArray to another NSMutableArray

I am trying to understand copying objects from one NSMutableArray to another. Consider the following 2 scenarios: 1 - copying original to clone where changes in the clone will affect the original. 2 - ...
0
votes
1answer
85 views

Recursively creating an object and copying specific objects from an array in said object

So, I'm struggling a bit with my programming project. I have a object that stores player information, name, wins, losses. I proceed to use that object in another object (a bracket) that sets the ...
0
votes
1answer
344 views

copy NSMutableArray item

I am copying a mutable array like this: //copy players' info into playerList from a dictionary playerList = [[NSMutableArray alloc] initWithArray:[params objectForKey:@"p"] copyItems:YES]; The ...