3 層の画面を持つ単純な iPhone アプリケーションを開発しています。2 番目のレイヤーには 3 番目のレイヤーへの接続に問題があります。以下のコードを参照してください。ほとんどはチュートリアルから抜粋したものです。"TouchUpInside" は、Xamarin Studio のエラーとして赤色で強調表示されます。お手伝いできることがあればお知らせください。
エラー: 式は、'変数'、'値'、または 'タイプ' が必要な 'メソッド グループ' を示しています。
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
//---- when the hello world button is clicked
this.btnNext.TouchUpInside += (sender, e) => {
//---- instantiate a new hello world screen, if it's null
// (it may not be null if they've navigated backwards
if(this.helloWorldScreen2 == null)
{ this.helloWorldScreen2 = new HelloWorldScreen2(); }
//---- push our hello world screen onto the navigation
//controller and pass a true so it navigates
this.NavigationController.PushViewController(this.helloWorldScreen2, true);
};
}