我的应用程序有两个类:exampleAppDelegate
和exampleController
。
我将exampleController.h
导入exampleAppDelegate.m
,将exampleAppDelegate.h
导入exampleController.m
。
当我尝试在exampleController
类中使用来自exampleAppDelegate
类的插座或操作时,编译器会返回以下错误:
使用未声明的标识符和未找到的操作。
当我尝试使用exampleAppDelegate
中的exampleController
变量时,会出现同样的问题。
我做错了什么?
答案 0 :(得分:0)
如果要对多个文件中的事件(如UIControlEventTouchDown ...)使用相同的方法/选择器,请尝试使用addTarget:action:forControlEvents:
方法添加它们,而不是通过IBAction(界面构建器)进行添加。
另外,我不认为你在控制器中导入委托的方法是正确的。