swiftエラーの一覧と説明

使っていて表示されたエラーと内容、説明、解消法を記載していく予定

  • Terminating app due to uncaught exception ‘NSUnknownKeyException’, reason: ‘[<hashtag.ViewController 0x7fe349d05800> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key btn.’
    •  btnという紐づいていないものが存在する
  • Initialization of immutable value ‘view’ was never used; consider replacing with assignment to ‘_’ or removing it
    • 使用してない変数があるよ
  • 一括コメントアウトができない
    • sudo /usr/libexec/xpccachectl
    • 再起動
  • this class is not key value coding-compliant for the key
    • そんな変数見つからないよ
    • InterfaceBuilderのOutlet設定を直す
    • Objectに”Custom View(自分が作成したカスタムViewクラス)”を指定する。
      • =>”File’s Owner”を指定した場合、このカスタムViewを呼び出す処理でNSExceptionが発生してアプリが終了してしまう。