// // AppDelegate.m // Low Battery Yup // // Created by TW on 11/16/16. // Copyright (c) 2016 TW. All rights reserved. // #import "AppDelegate.h" @implementation AppDelegate - (void)dealloc { [super dealloc]; } - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Insert code here to initialize your application } - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication { return YES; } @end