iPhoneアプリ開発 デバッグ

error: PCH file built from a different branch ((clang-425.0.27)) than the compiler ((clang-425.0.28)) とエラーがでる

xcodeのバージョンを上げるとコンパイラのバージョンが古いからかエラーがでる。 そんな時はクリーンビルドが必要となる。 メニューバーのProduct>Cleanを実行したあとに、再度Runを実行すると問題なく起動できる

同じストーリーボードにあるほかのView Controllerのインスタンスを生成

あたりまえ体操。 いいともにあたりまえ体操の声の人がでていた。 あたりまえiPhone〜♪ 表題の件はー、こうやる♪ - (IBAction)presentSpecialViewController:(id)sender { UIStoryboard *storyboard = self.storyboard; SpecialViewController *svc = [story…

NSUnknownKeyException エラー

久々にiPhoneアプリ開発。まだまだ慣れない。 さて初歩的なエラーだと思うけど、ちょっと引っかかった。 2010-12-07 13:03:30.276 Memo2[17002:207] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<CustomViewController 0x801eb80> setValue:forUndefi</customviewcontroller>…

iPhoneアプリ開発 エラー対応

■iPhoneアプリ scene is unreachable due to lack of entry points and does not have an identifier for runtime access →全部の画面にTitle、StoryboardID、RestorationIDを登録した。 ■参考 ・URL http://hsylife.tumblr.com ・内容 How do I workaround …