mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-03 14:37:53 +00:00
23 lines
529 B
C#
23 lines
529 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
using Foundation;
|
|
using UIKit;
|
|
|
|
namespace qController.iOS
|
|
{
|
|
[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();
|
|
|
|
LoadApplication(new App());
|
|
|
|
return base.FinishedLaunching(app, options);
|
|
}
|
|
}
|
|
}
|