Skip to content

Instantly share code, notes, and snippets.

@codebeaulieu
Created February 25, 2018 15:31
Show Gist options
  • Save codebeaulieu/09c5df2a8ffa39eed6684c25fe8cdb24 to your computer and use it in GitHub Desktop.
Save codebeaulieu/09c5df2a8ffa39eed6684c25fe8cdb24 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();
DependencyService.Register<Interfaces.IRendererResolver, Services.RendererResolver>();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment