AppDelegate.cs 671 B

12345678910111213141516171819202122
  1. using Foundation;
  2. using UIKit;
  3. using Avalonia;
  4. using Avalonia.Controls;
  5. using Avalonia.iOS;
  6. using Avalonia.Logging;
  7. using Avalonia.Media;
  8. namespace MobileSandbox
  9. {
  10. // The UIApplicationDelegate for the application. This class is responsible for launching the
  11. // User Interface of the application, as well as listening (and optionally responding) to
  12. // application events from iOS.
  13. [Register("AppDelegate")]
  14. public partial class AppDelegate : AvaloniaAppDelegate<App>
  15. {
  16. protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
  17. {
  18. return builder.LogToTrace(LogEventLevel.Debug, "IOSIME");
  19. }
  20. }
  21. }