| @@ -48,7 +48,8 @@ namespace juce | |||||
| } | } | ||||
| @property (strong, nonatomic) UIWindow *window; | @property (strong, nonatomic) UIWindow *window; | ||||
| - (id)init; | |||||
| - (id) init; | |||||
| - (void) dealloc; | |||||
| - (void) applicationDidFinishLaunching: (UIApplication*) application; | - (void) applicationDidFinishLaunching: (UIApplication*) application; | ||||
| - (void) applicationWillTerminate: (UIApplication*) application; | - (void) applicationWillTerminate: (UIApplication*) application; | ||||
| - (void) applicationDidEnterBackground: (UIApplication*) application; | - (void) applicationDidEnterBackground: (UIApplication*) application; | ||||
| @@ -88,7 +89,7 @@ namespace juce | |||||
| NSObject* _pushNotificationsDelegate; | NSObject* _pushNotificationsDelegate; | ||||
| - (id)init | |||||
| - (id) init | |||||
| { | { | ||||
| self = [super init]; | self = [super init]; | ||||
| appSuspendTask = UIBackgroundTaskInvalid; | appSuspendTask = UIBackgroundTaskInvalid; | ||||
| @@ -100,6 +101,11 @@ namespace juce | |||||
| return self; | return self; | ||||
| } | } | ||||
| - (void) dealloc | |||||
| { | |||||
| [super dealloc]; | |||||
| } | |||||
| - (void) applicationDidFinishLaunching: (UIApplication*) application | - (void) applicationDidFinishLaunching: (UIApplication*) application | ||||
| { | { | ||||
| ignoreUnused (application); | ignoreUnused (application); | ||||