Hi Smasher !
Thanks a lot for your reply.
the "initWithParent" sound like a good idea, but my problem is that i don't know technicaly how to define the parent class as a member of the child class.
i would guess something like this :
-(void) initWithParent
{
my_parent = super;
}
is this the right way? And then i can access is using:
x = my_parent.member_data;
|