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
}