NativeScript - Angular 2自定义AppDelegate

时间:2016-11-30 15:29:39

标签: ios angular mobile nativescript angular2-nativescript

是否有Angular 2方法在NativeScript中完成自定义AppDelegate,如this?我已经看过没有Angular如何做到这一点的例子,我不知道在Angular 2中注册AppDelegate的位置。

1 个答案:

答案 0 :(得分:5)

您可以将其添加到 main.ts

import application = require("application");
import { CustomAppDelegate } from "./custom-app-delegate";
if (application.ios {
   application.ios.delegate = CustomAppDelegate;
}
platformNativeScriptDynamic().bootstrapModule(AppModule);