Translate

jueves, 1 de marzo de 2012

Cerrando una aplicación de manera correcta / The right way to Close an App


Para hacer que una aplicación cierre correctamente al cerrar la última ventana añadiremos el siguiente método en el fichero .m del Aplication Delegate

To make an application close when the last windows were closed you must add the following method in the .m Apllication Delegate´s file


- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender
{
      return YES;
}

No hay comentarios: