为什么我不能从故事板创建IBActions

时间:2014-09-07 01:46:52

标签: ios objective-c xcode storyboard xcode-storyboard

我有一个故事板视图控制器,它继承自UINavigationController但由于某种原因无法创建IBActions,只有IBOutlets。我已经改变了视图控制器的类,以适应我试图创建IBAction的类。为什么会发生这种情况?任何帮助将非常感激。 我在这里附上了问题的图片:Imgur link

1 个答案:

答案 0 :(得分:0)

您可以在头文件中轻松制作IBAction。

//This is your header file
@interface AppMain{
   //Outlets and others here   
}

//Actions, Voids, Properties and others here.

你把行动放在哪里 -

-(IBAction)[Name of action];

在链接器的故事板中,您可以将Action链接到按钮。