Last active
August 11, 2016 09:26
-
-
Save nuitsjp/a09b12ea660831b1c85fdc12636f02ce to your computer and use it in GitHub Desktop.
Hello, Prism. AppDelegate.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate | |
{ | |
public override bool FinishedLaunching(UIApplication app, NSDictionary options) | |
{ | |
global::Xamarin.Forms.Forms.Init(); | |
LoadApplication(new App(new iOSInitializer())); | |
return base.FinishedLaunching(app, options); | |
} | |
} | |
public class iOSInitializer : IPlatformInitializer | |
{ | |
public void RegisterTypes(IUnityContainer container) | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment