Getting backtrace of any thread for Objective-C and Swift
Getting backtrace of any thread for Objective-C and Swift. Only a small amount of C code, almost all done in Swift.
It is is much more powerful than Thread.callStackSymbols, callStackSymbols can only get the current thread call stack symbol, and the symbol not Name Mangling in Swift。
RCBacktrace.setup()
let symbols = RCBacktrace.callstack(.main)
for symbol in symbols {
print(symbol.description)
}
≈ Requirements
Add the following line to your Cartfile
git "https://github.com/woshiccm/RCBacktrace.git" "0.1.6"
CocoaPods is a dependency manager for Cocoa projects. To integrate Aspect into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'xxxx' do
pod 'RCBacktrace', '~> 0.1.6'
end
Aspect is released under the MIT license. See LICENSE for details.