Skip to content

Instantly share code, notes, and snippets.

@4np
Created November 8, 2016 09:09
Show Gist options
  • Save 4np/eb796c5061f9e121e0c55d0e349cf159 to your computer and use it in GitHub Desktop.
Save 4np/eb796c5061f9e121e0c55d0e349cf159 to your computer and use it in GitHub Desktop.
Show stacktrace in Swift
// Swift 2.3
for symbol: String in NSThread.callStackSymbols() {
print(symbol)
}
// Swift 3
for symbol: String in Thread.callStackSymbols {
print(symbol)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment