我有两个类,都继承自NSObject
。一个称为class1
,另一个称为class2
。它们都有一个实例,class1
- > obj1
和class2
- > obj2
。
在class1
的{{1}}方法中,我创建了init
的实例。从class2
的{{1}}方法开始,我想从obj2
init
我该怎么做(什么是代表,我可以使用吗?)
答案 0 :(得分:2)
- initWithThingy:(Class1 *)anObj
{
self = [super init];
if (self) {
obj1 = [anObj retain]; // or use your set method/property, if you have one
[obj1 methode];
}
return self;
}