我的协议有问题。
我的“初始视图控制器”是一个导航控制器。在根页面上,我显示了另一个导航控制器,其中嵌入了视图控制器。onclick 一个 segue 应该被解雇......这工作得很好,但从“ViewController”的委托方法永远不会被调用。
我添加的图像是我如何在 iOS 5 中使用 InterfaceBuilder 建立 2 个 NavigationController 之间的连接的示例。
MyViewController.h
@protocol MyProtocol <NSObject>
@required
- (void) myFunction:(NSString *)string;
@end
@interface MyViewController : UIViewController <MyProtocol>
@property (nonatomic, assign) id<MyProtocol> delegate;
@end
我的视图控制器.m
#import "MyViewController.h"
@implementation PropertyController
@synthesize delegate = _delegate;
- (void) myFunction:(NSString *)string {
[_delegate myFunction:string];
}
- (IBAction) callDelegate:(id)sender {
![enter image description here][1][self myFunction:@"test"];
}
这是 ViewController 的代码,它从上面显示 NavigationController
视图控制器.h
#import "MyViewController.h"
@interface ViewController : UIViewController <MyProtocol>
视图控制器.m
#import "ViewController.h"
@implementation ViewController
- (void) myFunction:(NSString *)string {
NSLog(@"myFunction was called");
}
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
[((MyViewController *) segue.destinationViewController) setDelegate:self];
}
- (IBAction) showModalNavigationController {
[self performSegueWithIdentifier:@"NameFromSegueInInterfaceBuilder" sender:self];
}
我找不到我的问题的解决方案。
我希望有人能帮助我
谢谢你 :)