Crossplatform App der Caritas (Versuch).
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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