Conversation
correct the output and command of lldb
|
I think it should be |
|
@chriseidhof It's true that But according to the original article, the output is (lldb) e NSArray *$array = @[ @"Saturday", @"Sunday", @"Monday" ]
(lldb) p [$array count]
(NSUInteger) $0 = 3
(lldb) po [$array count]
3
#there is an empty lineIn a word if you're using It's quite wired that I'm trying to figure it out but it's too difficult to me to read the source code of LLDB. Please let me know if you got the technical reason. 😄 |
|
@chriseidhof anything updated here? |
revolter
left a comment
There was a problem hiding this comment.
Either this, either change the output line to (NSUInteger) $0 = 3, though I think having 3 is better.
correct the output and command of lldb