本文介绍: App 闪退对于开发人员来说比较头疼,对异常的捕获和定位,以便快速修复Bug 非常考验一个人的功底。对于iOS系统来说通过使用Runtime 和 扩展 来处理异常并友好的提示不让其闪退是不错的选择,但是比较繁琐。好在系统提供了一个 NSSetUncaughtExceptionHandler api 能捕获所有异常。今天主要介绍该函数在Swift 中的使用。先看下效果图:1、定义异常捕获及处理的相关方法。本代码参考了https://github.com/lbwxly/CrashH…
App 闪退对于开发人员来说比较头疼,对异常的捕获和定位,以便快速修复Bug 非常考验一个人的功底。对于iOS系统来说通过使用Runtime 和 扩展 来处理异常并友好的提示不让其闪退是不错的选择,但是比较繁琐。好在系统提供了一个 NSSetUncaughtExceptionHandler api 能捕获所有异常。今天主要介绍该函数在Swift 中的使用。先看下效果图:
本代码参考了 https://github.com/lbwxly/CrashHandler 这篇博客,由于没使用NSSetUncaughtExceptionHandler 所以经测试效果不太令人满意
import Foundation
public typealias Completion = ()->Void;
public typealias CrashCallback = (String,Completion)->Void;
public var crashCallBack: CrashCallback?
func signalHandler(signal:Int32) -> Void {
let stackTrace = Thread.callStackSymbols.joined(separator: "rn")
crashCallBack?(stackTrace,{
unregisterSignalHandler();
exit(signal);
});
}
func registerSignalHanlder()
{
objc_setUncaughtExceptionHandler { (_response:Any?) in
if let signal = _response as? Int32 {
signalHandler(signal: signal)
}
else if let exception = _response as? NSException {
// print("++++++++++++++++++ 异常信息 ++++++++++++++++++")
// NSLog("name:%@",exception.name.rawValue)
// NSLog("reason:%@",exception.reason ?? "--")
// NSLog("userInfo:%@",exception.userInfo ?? [:])
// NSLog("Stack Trace:%@",exception.callStackSymbols)
// NSLog("Stack ReturnAddresses:n%@", exception.callStackReturnAddresses)
// NSLog("Exception All:n%@", exception)
crashCallBack?(exception.reason ?? exception.callStackSymbols.joined(separator: "rn"),{
unregisterSignalHandler();
exception.raise()
});
}
}
signal(SIGINT, signalHandler);
signal(SIGSEGV, signalHandler);//野指针,僵尸对象
signal(SIGTRAP, signalHandler);
signal(SIGABRT, signalHandler);
signal(SIGILL, signalHandler);
signal(SIGBUS, signalHandler);
signal(SIGFPE, signalHandler);
signal(SIGTERM, signalHandler);
signal(SIGKILL, signalHandler);//CPU无法执行的代码(比如无效指令、除以0等)
signal(SIGPIPE, signalHandler);
}
func unregisterSignalHandler()
{
signal(SIGINT, SIG_DFL);
signal(SIGSEGV, SIG_DFL);
signal(SIGTRAP, SIG_DFL);
signal(SIGABRT, SIG_DFL);
signal(SIGILL, SIG_DFL);
signal(SIGBUS, SIG_DFL);
signal(SIGFPE, SIG_DFL);
signal(SIGTERM, SIG_DFL);
signal(SIGKILL, SIG_DFL);
signal(SIGPIPE, SIG_DFL);
}
public class CrashHandler
{
public static func setup(callBack:@escaping CrashCallback){
crashCallBack = callBack;
registerSignalHanlder();
}
}
2、调用
didFinishLaunchingWithOptions是全局的方法,所以在此注册调用,能捕获所有异常
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
//输出异常日志
CrashHandler.setup {[weak self] (stackTrace, completion) in
self?.showExceptionFor(Reason: stackTrace)
completion()
}
return true
}
}
//MARK: - 异常处理
extension AppDelegate {
private func showExceptionFor(Reason reason:String,
andTitle t:String = "app异常"){
//var dismiss = false
let currentRunloop = CFRunLoopGetCurrent()
if let vc = UIApplication.shared.keyWindow?.rootViewController {
Utils.shareInstance().showBoxFor(ViewController: vc,
andMessage: t,
andOK: "提交日志,并返回首页",
andOKBlock: {[weak self] action in
print("异步提交异常日志")
//...
//返回首页
var arr = self?.navController.popToRootViewController(animated: false)
Utils.shareInstance().gotoRoot(ViewController: arr)
arr?.removeAll()
//dismiss = true
},
andCancle: nil,
withInfo: reason)
}
if let arrModes = CFRunLoopCopyAllModes(currentRunloop) as? Array<CFString> {
//while !dismiss {
while true {
for model in arrModes {
CFRunLoopRunInMode(CFRunLoopMode.init(rawValue: model), 0.001, false)
}
}
}
}
}
由于调用 popToRootViewController方法导致了内存泄露,暂时还没好的办法处理
原文地址:https://blog.csdn.net/yimiyuangguang/article/details/122924098
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_28698.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。