从一个按钮多个发送的操作?

时间:2011-07-22 22:48:14

标签: cocoa core-data

我觉得这应该很简单,但我的google-foo现在让我失望了。如何将按钮发送给两件事(在这种情况下,将新的Coredata对象添加到Array Controller并打开编辑面板)。

谢谢!

1 个答案:

答案 0 :(得分:3)

调用一种可以完成这两件事的方法。

E.g。

- (void)doCoreDataStuff {
//Core Data Stuff
}

- (IBAction)buttonAction:(id)sender {
[self doCoreDataStuff];
// Show the edit panel
}

将其链接到第二种方法......