Crossplatform App der Caritas (Versuch).
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }