iOS版。当其他代码已经使用NSSetUncaughtExceptionHandler时,我怎么能捕获异常?

时间:2016-06-14 11:47:43

标签: ios objective-c xcode exception-handling

我想使用全局异常处理程序。

调用applicationdidFinishLaunchingWithOptions:

NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);

并使用它来处理异常:

    void uncaughtExceptionHandler(NSException *exception) {
        // handling exception
}

但我也使用sdk,它已经使用了NSSetUncaughtExceptionHandler。然后我的方法uncaughtExceptionHandler在异常发生时没有被调用。

我知道一个app只能是一个处理程序。但是我需要那个和sdk,这个代码可以处理全局级别的异常。

在这种情况下,您有什么想法我可以使用NSSetUncaughtExceptionHandler吗?或者其他想法如何在全球范围内处理异常? 非常感谢。

1 个答案:

答案 0 :(得分:0)

在SDK installUncaughtExceptionHandler()将涵盖处理程序后调用NSSetUncaughtExceptionHandler。比调用uncaughtExceptionHandler

此外,您可以存储SDK的处理程序,并在uncaughtExceptionHandler中调用它以使SDK协同工作。

示例代码:

static NSUncaughtExceptionHandler *exceptionHandler = NULL;

typedef void (*sighandler_t)(int);
static sighandler_t sigHandler = NULL;

static void handleException(NSException *e)
{
    //your code ...

    //call the SDK handler
    if (exceptionHandler) {
        exceptionHandler(e);
    }
}

static void handleSignal(int signal)
{
    //your code ...

    if (sigHandler) {
        sigHandler(signal);
    }
}

void installUncaughtExceptionHandler()
{
    // store the SDK handler
    exceptionHandler = NSGetUncaughtExceptionHandler();

    NSSetUncaughtExceptionHandler(&handleException);

    sigHandler = signal(SIGABRT, handleSignal);
    signal(SIGILL, handleSignal);
    signal(SIGSEGV, handleSignal);
    signal(SIGFPE, handleSignal);
    signal(SIGBUS, handleSignal);
    signal(SIGPIPE, handleSignal);
}