зеркало из https://github.com/xamarin/ios-samples.git
40 строки
958 B
C#
40 строки
958 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using MonoTouch.Foundation;
|
|
using MonoTouch.UIKit;
|
|
|
|
namespace AUSoundTriggeredPlayingSoundMemoryBased
|
|
{
|
|
public class Application
|
|
{
|
|
static void Main (string[] args)
|
|
{
|
|
UIApplication.Main (args);
|
|
}
|
|
}
|
|
|
|
// The name AppDelegate is referenced in the MainWindow.xib file.
|
|
public partial class AppDelegate : UIApplicationDelegate
|
|
{
|
|
MainView _ctr;
|
|
// This method is invoked when the application has loaded its UI and its ready to run
|
|
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
|
|
{
|
|
// If you have defined a view, add it here:
|
|
// window.AddSubview (navigationController.View);
|
|
_ctr = new MainView();
|
|
window.AddSubview(_ctr.View);
|
|
window.MakeKeyAndVisible ();
|
|
|
|
return true;
|
|
}
|
|
|
|
// This method is required in iPhoneOS 3.0
|
|
public override void OnActivated (UIApplication application)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|