gpt4 book ai didi

ios - 在 iOS 中捕获崩溃和异常

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:42:33 25 4
gpt4 key购买 nike

<分区>

我想要的是自己捕获所有崩溃和异常并添加其他信息(例如用户)来保存它。现在,我的想法是将 try-catch block 包装在 didFinishLaunchingWithOptions 中。在 catch block 中,我记录异常和附加信息,然后重新抛出它。这是实现它的正确方法吗?提前致谢。

代码更新:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
@try {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.

self.loginViewController = [[LoginViewController alloc] init];
self.window.rootViewController = self.loginViewController;
[self.window makeKeyAndVisible];
}
@catch (NSException *exception) {
// Save the exception description and additional info here
...
// And re-throw it.
[exception raise];
}
return YES;

}

进一步更新:上面的代码我自己试过,其他地方发生的异常都捕捉不到。我知道谷歌分析 iOS SDK 有“sendUncaughtExceptions”属性来做类似的事情。我认为如果我自己实现类似的功能可以提供更多的灵 active ,因为我们有自己的错误服务器(我会将错误日志上传到我们的服务器)。任何建议表示赞赏。

解决方法:最后,我从这个博客得到了一个解决方案: http://www.cocoawithlove.com/2010/05/handling-unhandled-exceptions-and.html

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com