Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そうそう。アプリケーション (RSS リーダー) を実行したところ、このエラーが発生しました。それはこの行を指しています:0x10e0098: movl (%eax), %edxそして私の MainViewController.m のコードは
0x10e0098: movl (%eax), %edx
UIViewController *WebViewController = [[WebViewController alloc] initWithNibName:@"WebViewController.h" bundle:nil];
nib 名には .h 拡張子がありません (ヘッダー ファイル)。これを試して:
UIViewController *WebViewController = [[WebViewController alloc] initWithNibName:@"WebViewController" bundle:nil];
nib のファイル名が WebViewController.xib であると仮定します。