10 lines
324 B
Objective-C
10 lines
324 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
// Legacy Objective-C AppDelegate left in place for compatibility.
|
|
// The actual application delegate is implemented in Swift as `AppDelegate`
|
|
// (subclassing ExpoAppDelegate).
|
|
@interface LegacyAppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (nonatomic, strong) UIWindow *window;
|
|
|
|
@end
|