Tagged Questions
The copywithzone tag has no wiki summary.
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 ...
3
votes
1answer
769 views
Problem when using UIColor RGB black as a key in an NSMutableDictionary
I can set UIColor objects as keys in an NSMutableDictionary all day long and everything is fine and happy...
For instance:
[myDict setObject:foo forKey:[UIColor redColor]];
That works just ...
3
votes
2answers
2k views
NSCollectionView in 10.6/Xcode 3.2
in Xcode 3.1.2 I used to load the nib of the NSCollectionViewItem in my subclass of NSCollectionViewItem like this:
-(id)copyWithZone:(NSZone *)zone
{
id result = [super copyWithZone:zone];
...
2
votes
1answer
800 views
Objectiv C: copyWithZone (deep copy) method of my own class crashes
I try to creaty a copying method confering to the protocol NSCopying.
I have the following class:
@interface Gene : NSObject <NSCopying>
{
int firstAllele;
int secondAllele;
}
with ...
1
vote
1answer
85 views
iOS copyWithZone unrecognized selector only when using device
I'm working on an iPad app that launches an initial screen only when there is certain data in a sqlite DB, something like this:
if ((int)[MyStore sharedInstance].mode < 0)
{
...
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
1answer
116 views
NSCell not properly displayed
I have an custom NSCell in an NSTableView and it doesn't display correctly. The table view has the right number of items in it but they're empty except for the first one. The first one shows the cell ...
0
votes
1answer
363 views
iPhone - copyWithZone return value ownership and retain count
I read in the apple documentation about copyWithZone :
"The returned object is implicitly retained by the sender, who is responsible for releasing it".
So if I write this :
- ...
0
votes
1answer
251 views
iPhone : copyWithZone : releasing an object before its return?
I read in the apple documentation about copyWithZone : "The returned object is implicitly retained by the sender, who is responsible for releasing it".
But... How may I release something I return... ...
0
votes
3answers
2k views
copy one NSString to another
How to copy one NSString to another?
@interface MyData : NSObject
{
@private
//user's private info
NSInteger uID;
NSString *name;
NSString *surname;
NSString *email;
...
0
votes
3answers
958 views
IPhone - copyWithZone leak
Testing my app on the device it returns a leak whe i call the copy of a custom object ande i can't understand why.
this is the call:
NSMutableArray *arr = [[NSMutableArray alloc] ...
0
votes
2answers
258 views
mutableCopyWithZone updating a property value
I have a Class that I need to copy with the ability to make changes the value of a variable on both Classes. Simply put these classes need to remain clones of each other at all times. My understanding ...