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];
笔尖名称没有 .h 扩展名(即头文件)。尝试这个:
UIViewController *WebViewController = [[WebViewController alloc] initWithNibName:@"WebViewController" bundle:nil];
假设您的 nib 的文件名是 WebViewController.xib。