12 lines
414 B
Objective-C
12 lines
414 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "AlerteSecours-Swift.h"
|
|
|
|
int main(int argc, char * argv[]) {
|
|
@autoreleasepool {
|
|
// Use the Swift ExpoAppDelegate-based AppDelegate as the principal class.
|
|
// The Objective-C runtime name of the Swift class is `AppDelegate`
|
|
// because it is annotated with `@objc(AppDelegate)` in AppDelegate.swift.
|
|
return UIApplicationMain(argc, argv, nil, @"AppDelegate");
|
|
}
|
|
}
|
|
|