0

デリゲートを使用してviewControllerAからviewControllerBに単純なデータを送信しようとしていますが、コードで問題が見つかりません。コードは次のとおりです

ViewControllerA.h

#import <UIKit/UIKit.h>

@class ViewControllerA;

@protocol viewControllerADelegate <NSObject>
-(void) addItem: (ViewControllerA *)controller data:(NSString *)item;
@end

@interface ViewControllerA : UIViewController
- (IBAction)buttonPressed:(id)sender;

@property (assign) id<viewControllerADelegate> delegate;
@end

ViewControllerA.m

#import "ViewControllerA.h"

@interface ViewControllerA ()

@end

@implementation ViewControllerA
@synthesize delegate;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
    // Custom initialization
}
return self;
}

- (void)viewDidLoad
 {
 [super viewDidLoad];
// Do any additional setup after loading the view.

 }

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
 - (BOOL)shouldAutorotateToInterfaceOrientation:        (UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
 }

- (IBAction)buttonPressed:(id)sender {
[self.delegate addItem:self data:@"this is data"];

  }
 @end

そしてここにあるViewControllerB.h

#import <UIKit/UIKit.h>
#import "ViewControllerA.h"

@interface ViewControllerB : UIViewController<viewControllerADelegate>

 @end

ViewControllerB.m

#import "ViewControllerB.h"
 #import "ViewControllerA.h"

@interface ViewControllerB ()

@end

@implementation ViewControllerB

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
    // Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
ViewControllerA *vba = [[ViewControllerA alloc]init];
[vba setDelegate:self];

}

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
 {
return (interfaceOrientation == UIInterfaceOrientationPortrait); 
 }
-(void) addItem: (ViewControllerA *)controller data:(NSString *)item{
NSLog(@"delegate function called");
}

@end

実装された関数-(void) addItem: (ViewControllerA *)controller data:(NSString *)itemが呼び出されることはありません。前もって感謝します

4

1 に答える 1

1

ストーリーボードを使用していますか?はいの場合は、間違ったボタンを押すだけです。ストーリーボードはビューコントローラーを独自に初期化するため、コードは次のとおりです。

ViewControllerA *vba = [[ViewControllerA alloc]init];
[vba setDelegate:self];

未使用のView Controllerにデリゲートを設定するだけです。セグエを使用し、車輪を再発明しようとしないでください。

于 2012-06-19T19:05:20.440 に答える