Visual Studio で Xamarin.iOS のプロジェクトを作成すると、ストーリーボードなどという忌まわしいものがデフォルトで作成されてしまい非常に厳しい気持ちになります。この記事では、それらを削除して、コードで UI を構成していくためのステップを説明します。3 分ほど作業をすれば邪魔なものが消えてなくなってくれます。
1. Main.storyboard を削除
2. ViewController.designer.cs を削除
3. ViewController の余計なコードを削除する
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.
}
}
}
4. Info.plist の Main Interface を削除
5. AppDelegate に ViewController を表示するコードを追加
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;
}
}
}
6. 動くサンプル
GitHub で公開しているので適当にどうぞ: https://github.com/pawotter/Xamarin.iOS.NonStoryboard
Pinned Articles
About
ウェブ界隈でエンジニアとして労働活動に励んでいる @gomi_ningen 個人のブログです
Tags
JavaScript
PowerShell
kibana
elasticsearch
fluentd
nginx
イベント
五十嵐裕美
村川梨衣
logrotate
IoT
Scala
Java
C言語
iputils
ICMP
WUG
mastodon
Swift
AWS
Clock
Windows
アーキテクチャ
PoEAA
iOS
DeviceFarm
プログラミング言語
OS
StepFunctions
Lambda
Serverless
terraform
ポエム
RHEL
ネットワーク
GraphQL
CloudWatch
Linux
Coreutils
network
nc
telnet
LinuxKernel
fpinscala
ELB
IAM
AppSync
EFS
Gradle
english