2 つのビュー コントローラー間でデータをやり取りしようとしています。viewcontroller2はviewcontrollerのデリゲートです..注..デリゲートプロパティを「相棒」と呼びましたはい、これは悪い習慣であることは知っていますが、概念を理解しようとしていじっているだけです。
ここにビューコントローラーがあります:
#import <UIKit/UIKit.h>
@protocol ViewControllerDelegate <NSObject>
@required
- (void)sendData:(NSString *)theString;
@end
@interface ViewController : UIViewController
@property (nonatomic, assign) id <ViewControllerDelegate> homie;
- (void)doSomething;
- (IBAction)doneText:(id)sender;
@end
実装:
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(void)doSomething{
}
- (IBAction)doneText:(id)sender {
UITextField *thisField = sender;
if([_homie respondsToSelector:@selector(sendData:)]){
[_homie sendData:[thisField text]];
}
}
今ここに最初のものを実装する他のView Controllerがあります
#import <UIKit/UIKit.h>
#import "ViewController.h"
@interface ViewController2 : UIViewController <ViewControllerDelegate>
- (IBAction)hittingbtn:(id)sender;
@property (weak, nonatomic) IBOutlet UITextField *textfield;
@property (strong, nonatomic) ViewController *vc;
@end
実装:
#import "ViewController2.h"
@interface ViewController2 ()
@end
@implementation ViewController2
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
ViewController *theview = [[ViewController alloc]init];
theview.homie = self;
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
// DELEGATE METHOD
- (void)sendData:(NSString *)theString{
[_textfield setText:theString];
}
- (IBAction)hittingbtn:(id)sender {
}
@end
viewdidload で、最初のビュー コントローラーをインスタンス化し、自分自身をそのデリゲートとして設定します。そのviewcontroller2がそのメソッドでコードを実行すると、そのデリゲートがデリゲートメソッドを実装してそのコードを使用するかどうかがわかり、ここで何が欠けているのでしょうか?