2012-09-07 19:31:07.938 BadgerNew[2590:707] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </var/mobile/Applications/AD11CC37-653F-44FD-B7E2-412C0DB10234/BadgerNew.app> (loaded)' with name 'FrontPageofBadger''
这里曾经是一个名为 FrontPageofBadger 的类和 xib。
但是,在整个项目中的任何地方都没有提及。
如果我搜索项目,我什么也得不到。
那么,为什么在地球上 iO 尝试加载这个所谓的 FrontPageofBadger?曾经有一个名为 FrontPageofBadger 的类。班级名称更改为 myprofile。我没有看到 ios 应该找到 frontpageofbadger 的任何地方。它没有在任何代码或 xib 中提及。
在哪里?什么样的代码会尝试加载它?
代码在模拟器中运行良好
是的,其他人也有同样的问题。我从 iPhone 等中删除了干净的构建版本。无济于事
-(void)startInit{
[[NSUserDefaults standardUserDefaults] setObject:@"0" forKey:@"OnlyBookmark"];
//[BNUtilitiesQuick AnimateSwitchingWithParent:self From:[BNUtilitiesQuick searchController] To:[BNUtilitiesQuick searchController]];
if ([BNUtilitiesQuick searchController].view == nil) {};
if ([BNUtilitiesQuick ListController].view == nil) {};
if ([BNUtilitiesQuick FrontPageAje].view == nil) {}; //this is where the error happen. I
FrontPageAje 是一个函数
+ (MyProfile *) FrontPageAje
{
return[BNUtilitiesQuick appDelegate].SettingsMiscelaneous;
}
它在这里声明:
@property (nonatomic, weak) IBOutlet MyProfile *SettingsMiscelaneous;
很明显 FrontPageofBadger 没有出现在任何地方。
我故意尝试在开始时加载所有viewController。馊主意。我知道。