Crossplatform App der Caritas (Versuch).
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AppDelegate.cs 1.0KB

12345678910111213141516171819202122232425
  1. using Foundation;
  2. using UIKit;
  3. namespace CaritasApp.iOS {
  4. // The UIApplicationDelegate for the application. This class is responsible for launching the
  5. // User Interface of the application, as well as listening (and optionally responding) to
  6. // application events from iOS.
  7. [Register("AppDelegate")]
  8. public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate {
  9. //
  10. // This method is invoked when the application has loaded and is ready to run. In this
  11. // method you should instantiate the window, load the UI into it and then make the window
  12. // visible.
  13. //
  14. // You have 17 seconds to return from this method, or iOS will terminate your application.
  15. //
  16. public override bool FinishedLaunching(UIApplication app, NSDictionary options) {
  17. global::Xamarin.Forms.Forms.Init();
  18. LoadApplication(new App());
  19. return base.FinishedLaunching(app, options);
  20. }
  21. }
  22. }