我有一个故事板视图控制器,它继承自UINavigationController,但由于某些原因无法创建IBActions,只能创建IBOutlets。我已经更改了视图控制器的类,以适应我试图在其中创建IBAction的类。为什么会发生这种情况?任何帮助都将不胜感激。我在这里附上了一张问题的图片:Imgur链接
您可以轻松地在头文件中创建IBAction。
//This is your header file
@interface AppMain{
//Outlets and others here
}
//Actions, Voids, Properties and others here.
你把行动放在哪里-
-(IBAction)[Name of action];
在链接器的情节提要中,您可以将"操作"链接到按钮。