没有可见的界面声明选择器' setDelegate'

时间:2014-09-14 09:58:26

标签: ios objective-c delegates

我有一个令人沮丧的问题。我无法绕过“委托事”。 我的问题是我无法将Viewcontroller设置为委托。

-(IBAction)adminRegisterVC:(id)sender{
AdminSignUpViewController *adminSignUpVC = [[AdminSignUpViewController alloc] init];
[adminSignUpVC setDelegate:self]; // Gets an error message. See what error below.
[self.navigationController pushViewController:adminSignUpVC animated:YES];
}

它不能用于:adminSignUpVC.delegate = self;

错误:

  

'AdminSignUpViewcontroller'没有可见的@interface声明选择器'setDelegate:'

我应该添加一些内容:

@interface AdminSignUpViewController : UIViewController

我真的需要一些帮助!

0 个答案:

没有答案