0
我已經命名的類建築:聲明一個類的對象到另一個類
@interface Building : NSObject
@property (nonatomic,retain)NSString* node;
@property (nonatomic,retain)NSString* subnode;
@property (nonatomic,retain)NSString* supernode;
@property (nonatomic,retain)Node *reference;
@end
我點名另一個類:
@property (nonatomic,retain)NSMutableArray* strArray;
@property (nonatomic,retain)NSString * strName;
節點我宣佈建設的情況下,從第三類。我已經設置通過使用建築物的參考strName從第三類:
building.reference.strName=strVal;
但是,這給了我空值。如何我通過使用Building類的引用來設置此值。
你實際上正在創建一個'Building'實例,然後將它的'reference'設置爲你同樣創建的'Node'? –
另外,你確定strVal不爲null嗎? – sosborn