//AddSideBarProtocol.h
@protocol AddSideBarProtocol <NSObject>
- (IBAction)barButtonTapped:(id)sender;
@end
すべてのView Controllerで使用する上記のプロトコルを作成しています。このプロトコルの私の実装は次のとおりです。
//AddVehicleViewController.m
- (IBAction)barButtonTapped:(id)sender{
[self.view endEditing:YES];
[lblToolBarTitle setText:@"Vehicle Management"];
tblViewSideBar = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 200, self.view.frame.size.height-44)];
tblViewSideBar.delegate = self;
tblViewSideBar.dataSource = self;
tblViewSideBar.separatorStyle = UITableViewCellSeparatorStyleNone;
[tblViewSideBar setBackgroundColor:[UIColor lightGrayColor]];
btnToClose = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[btnToClose setBackgroundColor:[UIColor clearColor]];
[btnToClose addTarget:self action:@selector(dismissView:) forControlEvents:UIControlEventTouchUpInside];
addSideBarView = [[UIView alloc]initWithFrame:CGRectMake(0, 44, 200, self.view.frame.size.height)];
[addSideBarView setBackgroundColor:[UIColor blackColor]];
addSideBarView.frame = CGRectMake(-200, 44, 200, self.view.frame.size.height);
[UIView animateWithDuration:0.5
delay:0.0
options:UIViewAnimationOptionCurveEaseInOut
animations:^ {
addSideBarView.frame = CGRectMake(0, 44, 200, self.view.frame.size.height);
}
completion:nil];
[self.view addSubview:btnToClose];
[self.view addSubview:addSideBarView];
[addSideBarView addSubview:tblViewSideBar];
}
そして、次のコード行を使用して、「MaintenanceViewControlle」という名前の別のView Controllerからプロトコルを呼び出しています::
AddVehicleViewController *addVehicle = [[AddVehicleViewController alloc] init];
id <AddSideBarProtocol> addSide;
addSide = addVehicle;
[addSide barButtonTapped:sender];
しかし、このプロトコルは適切に機能していないので、どこが欠けているのでしょうか??