Skip to content

Instantly share code, notes, and snippets.

@Char0394
Last active July 11, 2017 03:21
Show Gist options
  • Select an option

  • Save Char0394/8ee43c2b04cd834aa093afde2d5cefac to your computer and use it in GitHub Desktop.

Select an option

Save Char0394/8ee43c2b04cd834aa093afde2d5cefac to your computer and use it in GitHub Desktop.
[Register("AppDelegate")]
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