26 lines
481 B
C#
26 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
using MonoTouch.Foundation;
|
|
using MonoTouch.UIKit;
|
|
|
|
namespace NotCompileApp
|
|
{
|
|
[Register ("AppDelegate")]
|
|
public partial class AppDelegate : UIApplicationDelegate
|
|
{
|
|
UIWindow window;
|
|
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
|
|
{
|
|
window = new UIWindow(UIScreen.MainScreen.Bounds);
|
|
|
|
window.MakeKeyAndVisible();
|
|
|
|
// Complete time error
|
|
//return true;
|
|
}
|
|
}
|
|
}
|
|
|