//AddSideBarProtocol.h
@protocol AddSideBarProtocol <NSObject>
- (IBAction)barButtonTapped:(id)sender;
@end
我正在创建以上协议以在我的所有视图控制器中使用。 我对此协议的实现如下:
//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”的视图控制器调用协议::
AddVehicleViewController *addVehicle = [[AddVehicleViewController alloc] init];
id <AddSideBarProtocol> addSide;
addSide = addVehicle;
[addSide barButtonTapped:sender];
但是这个协议运作不正常,所以我缺少哪些?
答案 0 :(得分:0)
来自Apple的报道:
类接口声明与该类关联的方法和属性。相反,协议用于声明独立于任何特定类的方法和属性。
这是如何工作的:
1)你声明你的协议(就像你做的那样) 2)在接口中添加它们实现此协议的内容 例如:
//AddVehicleViewController.h
@interface AddVehicleViewController : UIViewController <AddSideBarProtocol>
这意味着此类应实现协议中声明的方法。 如果您未在每个类中实现未声明为可选的所有方法,您将收到警告。
3)您在代码中使用它: 例如:
AddVehicleViewController *addVehicle = [[AddVehicleViewController alloc] init];
[addVehicle barButtonTapped:sender];
关于协议的一些阅读: Apple Doc