Visual Studio で Xamarin.iOS のプロジェクトを作成すると、ストーリーボードなどという忌まわしいものがデフォルトで作成されてしまい非常に厳しい気持ちになります。この記事では、それらを削除して、コードで UI を構成していくためのステップを説明します。3 分ほど作業をすれば邪魔なものが消えてなくなってくれます。
Main.storyboard
を削除ViewController.designer.cs
を削除ViewController
が partial class である必要がなくなったので、partial キーワードを消します。合わせて IntPtr
を引数にとるコンストラクタも不要になりました。
using System; using UIKit; namespace Pawotter.iOS { - public partial class ViewController : UIViewController + public class ViewController : UIViewController { - protected ViewController(IntPtr handle) : base(handle) - { - // Note: this .ctor should not contain any initialization logic. - } public override void ViewDidLoad() { base.ViewDidLoad(); // Perform any additional setup after loading the view, typically from a nib. } public override void DidReceiveMemoryWarning() { base.DidReceiveMemoryWarning(); // Release any cached data, images, etc that aren't in use. } } }
Info.plist
の Main Interface を削除using Foundation; using UIKit; namespace Pawotter.iOS { [Register("AppDelegate")] public class AppDelegate : UIApplicationDelegate { public override UIWindow Window { get; set; } public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) { + Window = new UIWindow(UIScreen.MainScreen.Bounds); + var vc = new UIViewController(); + vc.View.BackgroundColor = UIColor.Orange; + Window.RootViewController = vc; + Window.MakeKeyAndVisible(); return true; } } }
GitHub で公開しているので適当にどうぞ: https://github.com/pawotter/Xamarin.iOS.NonStoryboard