XcodeのInterface Builderでストーリーボードを編集し、Interface BuilderからView Controllerを割り当てました。Xamarin.iOSがコンパイルされない - CS2011応答ファイルを開くときにエラーが発生する
今、私は次のコンパイラエラーが表示されるプロジェクトのコンパイルしようとしたとき:
/absolute/path/to/project/MyProject.iOS/CSC: Error CS2011: Error opening response file '/absolute/path/to/project/MyProject.iOS/Views/Root/RootController.cs' (CS2011) (MyProject.iOS)
/absolute/path/to/project/MyProject.iOS/CSC: Error CS2011: Error opening response file '/absolute/path/to/project/MyProject.iOS/Views/Root/RootController.designer.cs' (CS2011) (MyProject.iOS)
を、これが関連することができれば、私は知らないが、私は、Mac用のVisual StudioからのViewControllerを作成するときに[コミュニティ](7.2.2ビルド11)また、ViewController用のファイルとして.xib
を作成します.ViewControllerだけを削除するだけです。
とにかく、私はXcodeからストーリーボードを編集する際に、どうやってやるべきことはありますか?または、Visual Studioから新しいUIViewController
を作成するときに欠けているものがありますか?ここで
は、Visual StudioがUIViewController
public partial class RootController : UIViewController
{
public RootController() : base("RootController", null)
{
}
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.
}
}