以前にボタンを作成し、ストーリーボードから .h ファイルにドラッグして、次のように設定しました。
@property (weak, nonatomic) IBOutlet UIButton *deleteComment;
その後、アクション ボタンが必要であることに気付き、このボタンのコードを削除しました。この画面に移動しようとすると、次の例外が発生します。
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<TopicEditController 0xa027ac0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key edit.'
*** First throw call stack:
システムは次の場所を指します。
int main(int argc, char *argv[])
{
@autoreleasepool
{
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
誰かがこれを防ぐ方法を教えてもらえますか?
ありがとう!