点击应用程序左上角关闭 程序退出

来源:互联网 发布:叫卖录音制作软件 编辑:程序博客网 时间:2024/05/19 13:42


把window的消息委托给AppDelegate,再到AppDelegate.m里加入以下函数

- (BOOL)windowShouldClose:(id)sender//close box quits the app

{

    [NSApp terminate:self];

    return YES;

}