ボタンクリックからの簡単なセグエを実装しました。ビューコントローラーのコードは次のとおりです。
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
{
if (self.categoryInt == 1)
[segue.destinationViewController setCategoryKey:SD_ADDITION];
else if (self.categoryInt == 2)
[segue.destinationViewController setCategoryKey:SD_SUBTRACTION];
}}
- (IBAction)category1Selected:(id)sender {
self.categoryInt = 1;
[self performSegueWithIdentifier:@"ShowWorksheet" sender:self];}
ログ メッセージから、destinationviewcontroller の ViewDidLoad を完全に実行したことを確認できますが、次のエラーが発生します。 0x75360e0'
これらのボタンに特定のセレクターを実装していません。また、私の MainMenuViewController には「categorySelected」メソッドはありません。呼び出されるメソッドは「category1Selected」です。このエラーの原因は何ですか?