实际上,我在我的应用程序中命名了三个视图控制器。我从 A 导航到 B,然后从 B 导航到 C。我从 C 调用委托方法,该方法在 A 中实现。这是我的代码
A.h
#import "A.h"
#import "C.h"
在A.m
我有
@interface A()<delegateName>
-(void)delegateMethod
{
NSLog(@"delegate");
}
-(void)moveToB
{
C *instanceOfC=[C alloc] init];
instanceOfC.delegate=self; //line 1
}
在B.h
#"import C.h"
在B.m
-(void)moveToC
{
A *instanceOfA=[[A alloc] init];
C *instanceOfC=[[C alloc] init];
instanceOfC.delegate= instanceOfA; //line 2
}
在C.h
@protocal delegateName <NSObject>
-(void)delegateMethod;
@end
@interface C
@property(nonatomic,weak) id<delegateName> delegate;
@end
在C.m
@synthesize delegate;
-(void)inSomeMethod
{
[delegate delegateMethod];
}
如果我<delegateName>
输入A.h
而不是A.m
then 它说undeclared delegate
。