From e9378ccf3e07fc564daafd5099f95439d7b612a3 Mon Sep 17 00:00:00 2001 From: Vincent Bénony Date: Mon, 7 Dec 2015 14:12:16 +0100 Subject: IOS: Avoid subclassing UIApplication, and handle multitasking --- backends/platform/ios7/iOS7AppDelegate.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 backends/platform/ios7/iOS7AppDelegate.h (limited to 'backends/platform/ios7/iOS7AppDelegate.h') diff --git a/backends/platform/ios7/iOS7AppDelegate.h b/backends/platform/ios7/iOS7AppDelegate.h new file mode 100644 index 0000000000..49411698c1 --- /dev/null +++ b/backends/platform/ios7/iOS7AppDelegate.h @@ -0,0 +1,9 @@ +// +// Created by Vincent Bénony on 07/12/2015. +// + +#import + + +@interface iOS7AppDelegate : NSObject +@end -- cgit v1.2.3 From dd950fdb22dcc3d4be06ed416c09b6fb438144c4 Mon Sep 17 00:00:00 2001 From: Vincent Bénony Date: Tue, 8 Dec 2015 11:04:04 +0100 Subject: IOS: Removes a global variable --- backends/platform/ios7/iOS7AppDelegate.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'backends/platform/ios7/iOS7AppDelegate.h') diff --git a/backends/platform/ios7/iOS7AppDelegate.h b/backends/platform/ios7/iOS7AppDelegate.h index 49411698c1..7f903a692d 100644 --- a/backends/platform/ios7/iOS7AppDelegate.h +++ b/backends/platform/ios7/iOS7AppDelegate.h @@ -4,6 +4,12 @@ #import +@class iPhoneView; + @interface iOS7AppDelegate : NSObject + ++ (iOS7AppDelegate *)iOS7AppDelegate; ++ (iPhoneView *)iPhoneView; + @end -- cgit v1.2.3