在今天的 Crittercism App Loads 中,我看到了 App Loads 的数量。但是当我崩溃时,我在今天的崩溃中看不到任何东西。我确实崩溃了。
if (tabBar.tag == 1 && item.tag == 2) {;
[NSException raise:NSInvalidArgumentException format:@"Foo must not be nil"];
};
或者崩溃。
if (tabBar.tag == 1 && item.tag == 2) {;
[NSException raise:@"error!" format:@"it go!"];
};
或者崩溃。
if (tabBar.tag == 1 && item.tag == 2) {;
[self wrongselector];
};
我应该怎么做才能让它处理崩溃?