2020-12-09から1日間の記事一覧

storyboard doesn't contain a view controller with identifier '

遷移先のStoryBoardにTABBar Controllerなどがある場合、初期表示画面のStoryBoardにIDを設定しておく必要がある。 書き方-1 idを指定する let storyboard = UIStoryboard(name: DiaryIndexController.className, bundle: nil) let nextVC = storyboard.inst…

swift error this class is not keyvalue cording-comliant

StoryBoardの接続エラーの問題がほとんど 今回はここにチェックが入っていなかった 初期画面には、ほとんどここにチェックを入れる必要がある。 理由:コンパイラはstoryBoardのどのクラスが最初に呼び出されるかがわからないから その他には、IBOutletの接続…

laravel デバッグ ツール Telescope

これはブラウザ上で変数、キャシュ、リクエストなどほぼすべてが確認できる便利なツール domain/telescope でアクセスする composer require laravel/telescope --dev php artisan telescope:install php artisan migrate エラーがでる マイグレーションファ…