ios - Two objects that points to one -


i have methode :

-(void)mymethod:(myclass *)object {  self.object1 = object; self.object2 = object;  .... } 

and object1 , object2 declared :

property (nonatomic, strong) myclass *object1; property (nonatomic, strong) myclass *object2; 

and myclass :

@interface myclass :nsobject  .... @end 

and later when modify self.object1 self.object2 modified to, self.object2 don't change value when modifing self.object1

you need make 2 properties copy instead of sttrong. need make myclass conform nscopying protocol , must implement copywithzone: method.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -