NSCopying is a protocol that provides a way to make a copy of an object.

learn more… | top users | synonyms

1
vote
1answer
76 views

Using NSCopy to Copy a Custom Object Containing Pointers?

I am learning how to use NSCopy. I want to make a copy of a custom object I am using, which is an ImageView in a UIScrollView. I am trying to implement NSCopying protocol as follows : ...
0
votes
1answer
59 views

NSCopying arrays of custom objects

I have a Singleton object that manages all my lists. We'll call it ListStore. ListStore has a mutable array, which stores Lists. @interface ListStore : NSObject @property (nonatomic, copy) ...
1
vote
1answer
112 views

Using -mutableCopyWithZone: on custom class makes it immutable

I've created a custom class which conforms to NSCopying and NSMutableCopying. I've added an implementation for -copyWithZone: and -mutableCopyWithZone:, but whenever I call -mutableCopy on my object ...
1
vote
3answers
109 views

NSCoding VS NSCopying

What are the real differences between NSCoding and NSCopying on the low level? Also, are they supposed to be used independently, together or when is it good to use which one?
0
votes
1answer
118 views

NSCopying and Objective-C memory management

Apple's NSCopying docs state that copyWithZone: returns an object that's implicitly retained by the sender. So when that object is added to an NSMutableArray it seems like the object should be sent an ...
0
votes
1answer
810 views

Incompatible pointer types sending 'Class' to parameter of type 'id<NSCopying>'

I have updated xcode and now I get the error message Incompatible pointer types sending 'Class' to parameter of type 'id' - (void)mapObjectClass:(Class)objectClass toCellClass:(Class)cellClass { ...
0
votes
2answers
233 views

What is the difference between “-copy” and “-copyWithZone:”?

I know that copy creates an immutable copy of an object but i just want to know hos copywithzone works and what is the basic difference between copy and copywithzone
0
votes
3answers
134 views

In ios will NSString = NSString cause memory leaks?

I've seen some answers but those didn't expand enough and I think they were before ARC was introduced. So if I have two NSSstring can I set string1 =string2; or NSString * a1=@"String"; ...
0
votes
2answers
59 views

Problems with getting and changing NSMutableArray objects

I have a NSMutableArray called organisations which is an array of custom objects of a class I subclassed from NSObject, this subclass is called NSXOrganisation. This subclass DOES implement NSCopy ...
0
votes
0answers
109 views

Is this a reasonable pattern for implementing NSMutableCopying?

I'm looking to implement the NSMutableCopying interface as I have a set of objects which are immutable, but I also need to be able to create modified copies. Let's assume we've got a movie defined ...
3
votes
1answer
1k views

How to create a copy of uiview (not a pointer to original uiview)

I want to create a copy of a UIView, and I dont want to use NSKeyedArchiver because I am frequently creating a copy of many views, and using NSKeyedArchiver was slow. I heard about copy or ...
0
votes
0answers
90 views

addObject to NSMutableArray but changes all objects in array

I have gone through Google and this website for 4 hours trying to find a solution for this. There are two pages on this website with the same answer but it doesn't work for me. I have a window with ...
0
votes
1answer
58 views

UILocalNotification - mutable copying

Overview: I am copying an instance of UILocalNotification and making changes to it to the newly created instance Then I schedule the newly created instance of UILocalNotification How I am copying ...
1
vote
2answers
721 views

copyWithZone issue

I am trying to make a copy of my UIViewController subclass by doing: BookViewController *bookVC = [catalogFlatViewController copy]; and I have the following error: '-[BookViewController ...
0
votes
2answers
291 views

How to subclass UIButton to allow to copy and encode for archiving?

I have an app where I need to track the last button pressed at all times. So I have implemented this method: -(void) lastButtonPressed: (id)sender { lastButtonPressed = (UIButton *)sender; } ...
3
votes
1answer
927 views

Override copy or copyWithZone: or both?

I'm confused looking at Apple's documentation and reading through Cocoa design patterns. In the Apple documentation for copyWithZone:, it reads: This method exists so class objects can be used in ...
0
votes
1answer
321 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 ...
5
votes
1answer
280 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 ...
0
votes
1answer
110 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
144 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 ...
11
votes
5answers
537 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"); ...
0
votes
2answers
770 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 ...
2
votes
2answers
97 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 ...
0
votes
1answer
471 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 ...
3
votes
1answer
205 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] ...
0
votes
3answers
362 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
774 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
2k 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 - ...
9
votes
2answers
2k 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 ...
12
votes
1answer
2k 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 ...
0
votes
1answer
150 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 ...
17
votes
1answer
9k views

Implementing NSCopying

I've read the NSCopying docs but I am still very unsure about how to implement what is required. My class Vendor: @interface Vendor : NSObject { NSString *vendorID; NSMutableArray ...
0
votes
1answer
512 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 ...
4
votes
2answers
717 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 ...
1
vote
1answer
403 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 ...
12
votes
4answers
1k 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.
2
votes
1answer
558 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 ...
8
votes
3answers
1k 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 ...
7
votes
3answers
617 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 ...
4
votes
1answer
899 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 ...
23
votes
6answers
24k 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 ...
4
votes
1answer
1k 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.
3
votes
3answers
1k 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. ...
9
votes
4answers
3k 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 ...