有没有办法在 iOS 中发送捕获的异常?我可以使用 HockeyApp SDK 中的 ExceptionHandler.saveException API 在 Android 中实现它。iOS 中的等效 API 是什么?
@try {
// lines of code which can cause an exception
}
@catch (NSException *exception) {
NSLog(@"%@", exception.reason);
// report to HockeyApp
}