これは私が持っているものです。ボタンを作成してアクションに設定しましたが、ボタンをクリックするたびにプログラムがクラッシュします。なぜ私のボタンは機能しませんか?前もって感謝します。プログラムで追加されたボタンは機能しません
[currentGamesButton addTarget:self
action:@selector(goToCurrentGamesViewController:)
に:goToCurrentGamesViewController
方法は、パラメータを取らない場合
UIButton *currentGamesButton = [UIButton buttonWithType:UIButtonTypeCustom];
currentGamesButton.frame = CGRectMake(124,18,72,65);
[currentGamesButton addTarget:self
action:@selector(goToCurrentGamesViewController:)
forControlEvents:UIControlEventTouchDown];
UIImage *currentGamesPNG = [UIImage imageNamed:@"CurrentGamesHighlightedState.png"];
[currentGamesButton setBackgroundImage:currentGamesPNG forState:UIControlStateNormal];
[self.view addSubview:currentGamesButton];
私はそれがセレクタgoToCurrentGamesViewControllerを見つけられないと思う:その宣言を含むこのメソッドは? .h:(IBAction)の –
goToCurrentGamesViewController; .m(IBAction)の – nfoggia
goToCurrentGamesViewController { – nfoggia