我正在尝试将一个对象作为属性放入另一个对象中:
@interface Options
{
Guarantor *guarantors;
NSString *success_message;
NSString *source;
}
@end
这是我的担保人对象:
@interface Guarantor{
BOOL *status;
NSString *message;
NSInteger *number;
}
@end
我遇到了一个错误,上面写着unknown type name Guarantor
?为什么是这样?