是否可以在Swift中为基于swift的代码设置符号断点?
假设我有一个像
这样的课程class AwesomeSauce {
var ingredients: [String]
init(useIngredients:[String]) {
ingredients = useIngredients
}
}
让我们说ingredients
数组的排序方式与
var specialSauce = AwesomeSauce(["Sugar","Spice","Everything Nice", "Chemical 'X'"])
specialSauce.ingredients.sort({ $0.length() > $1.length() })
我们也说(因为我没注意)我在整个项目中将这个数组排在一堆不同的地方。
我希望看到ingredients
何时被排序。
Array.sort()
或AwesomeSauce.ingredients.sort()
或类似的东西上设置符号断点?我似乎无法工作,我尝试了各种可能的符号排列。
答案 0 :(得分:3)
在Swift.Array.sort
上设置符号断点应该可以解决问题。
以下是来自swiftc和lldb的命令行的示例会话, 但你可以在Xcode中做同样的事情:
$ xcrun -sdk macosx swiftc -g main.swift $ lldb main (lldb) target create "main" Current executable set to 'main' (x86_64). (lldb) b main Breakpoint 1: where = main`main + 106 at main.swift:13, address = 0x0000000100001aea (lldb) run Process 8032 launched: './main' (x86_64) 7 locations added to breakpoint 1 1 location added to breakpoint 1 4 locations added to breakpoint 1 Process 8032 stopped * thread #1: tid = 0x1c46ff, 0x0000000100001aea main`main + 106 at main.swift:13, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100001aea main`main + 106 at main.swift:13 10 } 11 } 12 -> 13 var specialSauce = AwesomeSauce(useIngredients: ["Sugar","Spice","Everything Nice", "Chemical 'X'"]) 14 15 specialSauce.ingredients.sort( { count($0) > count($1) }) 16 (lldb) b Swift.Array.sort Breakpoint 2: where = libswiftCore.dylib`Swift.Array.sort (inout Swift.Array)((A, A) -> Swift.Bool) -> (), address = 0x0000000100030160 (lldb) c Process 8032 resuming Process 8032 stopped * thread #1: tid = 0x1c46ff, 0x0000000100030160 libswiftCore.dylib`Swift.Array.sort (inout Swift.Array)((A, A) -> Swift.Bool) -> (), queue = 'com.apple.main-thread', stop reason = breakpoint 2.1 frame #0: 0x0000000100030160 libswiftCore.dylib`Swift.Array.sort (inout Swift.Array)((A, A) -> Swift.Bool) -> () libswiftCore.dylib`Swift.Array.sort (inout Swift.Array)((A, A) -> Swift.Bool) -> (): -> 0x100030160 : pushq %rbp 0x100030161 : movq %rsp, %rbp 0x100030164 : pushq %r15 0x100030166 : pushq %r14 (lldb) bt * thread #1: tid = 0x1c46ff, 0x0000000100030160 libswiftCore.dylib`Swift.Array.sort (inout Swift.Array)((A, A) -> Swift.Bool) -> (), queue = 'com.apple.main-thread', stop reason = breakpoint 2.1 * frame #0: 0x0000000100030160 libswiftCore.dylib`Swift.Array.sort (inout Swift.Array)((A, A) -> Swift.Bool) -> () frame #1: 0x0000000100001c99 main`main + 537 at main.swift:15 frame #2: 0x00007fff8cff65c9 libdyld.dylib`start + 1