Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[AUSoundTriggeredPlayingSoundMemoryBased] Setup root view controller …
Browse files Browse the repository at this point in the history
…+ remove unused usings
  • Loading branch information
olegoid committed Sep 11, 2015
1 parent 66fa754 commit e6d1a5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Expand Up @@ -49,7 +49,7 @@
<WarningLevel>4</WarningLevel>
<MtouchDebug>True</MtouchDebug>
<ConsolePause>False</ConsolePause>
<CodesignKey>iPhone Developer: Рустам Заитов (29D5LNG7M9)</CodesignKey>
<CodesignKey>iPhone Developer</CodesignKey>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<MtouchArch>ARMv7</MtouchArch>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
Expand Down
7 changes: 1 addition & 6 deletions AUSoundTriggeredPlayingSoundMemoryBased/Main.cs
@@ -1,6 +1,3 @@
using System;
using System.Collections.Generic;

using Foundation;
using UIKit;

Expand All @@ -17,14 +14,12 @@ static void Main (string[] 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.RootViewController = new MainView ();
window.MakeKeyAndVisible ();

return true;
Expand Down

0 comments on commit e6d1a5e

Please sign in to comment.