I use Martin R\'s answer to print the NSSetUncaughtExceptionHandler in Swift.
How should I use NSSetUncaughtExceptionHandler in Swift
func exceptionHan
with the use of NSSetUncaughtExceptionHandler
NSSetUncaughtExceptionHandler { exception in print("EXception Details Are \n\nExceptionName--> \(exception.name) \nReason -->\(exception.reason!)\n\(exception.description)") print(exception.callStackSymbols) }