The copywithzone tag has no wiki summary.
0
votes
0answers
8 views
mouse tracking of a Custom Cell with text Image button for an NSTableview
here goes my dilemma :
I want to be able to track the mouse event for a customized cell, with some background search, it came back to overriding the tracking methods of the cell in question:
– ...
0
votes
1answer
25 views
[MyClassName copyWithZone:]: unrecognized selector sent to instance?
I just implemented my class
@interface ExampleNestedTablesViewController ()
{
NSMutableArray *projectModelArray;
NSMutableDictionary *sectionContentDictionary;
}
- (void)viewDidLoad
{
...
0
votes
1answer
313 views
error: no visible @interface for 'NSObject' declares the selector 'copyWithZone:'
I want to allow deep copy of my class object and am trying to implement copyWithZone but the call to [super copyWithZone:zone] yields the error:
error: no visible @interface for 'NSObject' declares ...
0
votes
0answers
115 views
unexpected invoke copyWithZone c++ cocos2d
I have some trouble.
I made some interface (abstract class in c++). Implemented it in my class (derived from CCObject too).
In third class I try to invoke method of interface and got SIGABORT. Here ...
0
votes
2answers
245 views
NSmanagedObject copyWithZone issues
I have a custom class Thing:NSManagedObject with an attribute of adminName.
I am trying to create a copyWithZone function in this Thing class, but when I run the app it says setAdminName doesn't ...
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 ...
9
votes
4answers
4k views
[UILabel copyWithZone:]: unrecognized selector sent to instance
I feel like I'm banging my head against the wall here (and I'm ready to do that, frankly).
I'm trying to set a background to the view. Background I need to set is an image and I'm using this code ...
0
votes
1answer
89 views
Copy of GKSession object implementing copyWithZone
I want to make a copy of a GKSession object and I implement copyWithZone as follow :
-(id)copyWithZone:(NSZone *)zone {
GKSession *kati = [[GKSession allocWithZone: zone] init];
...
0
votes
2answers
63 views
How can i copy a MutableArray in the same zone as the old one?
How can i add a mutable array in the same like the old one?
I tried this code but it doesn't work:
- (void)didParsingApiBusinesses:(NSMutableArray *)businesses
{
NSZone *zone = ...
6
votes
1answer
4k views
Best practice when implementing copyWithZone:
I am trying to clear up a few things in my head about implementing copyWithZone:, can anyone comment on the following ...
// 001: Crime is a subclass of NSObject.
- (id)copyWithZone:(NSZone *)zone {
...
5
votes
2answers
782 views
Why don’t iOS classes adopt copyWithZone protocol to encourage active mem mgt?
Recently turning to iOS after having worked with Cocoa, I was startled to get a SIGABRT with the following error: “-[UIDeviceRGBColor copyWithZone:]: unrecognized selector sent to instance…” I had ...
2
votes
1answer
917 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
469 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 ...
2
votes
1answer
2k 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 ...
0
votes
1answer
209 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
606 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
353 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... ...
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 ...
3
votes
1answer
2k 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 ...
1
vote
3answers
7k 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
2k 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
663 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 ...
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];
...