我設置一個斷點...如何在調試器控制檯中獲取NSDictionary對象的值/鍵?
如果我這樣做:
(lldb) print [self dictionary]
(NSDictionary *) $5 = 0x0945c760 1 key/value pair
,但如果我這樣做:
(lldb) print [[self dictionary] allKeys]
error: no known method '-allKeys'; cast the message send to the method's return type
error: 1 errors parsing expression
即使我嘗試訪問我所知道的是在那裏的關鍵..
(lldb) print [[self dictionary] objectForKey:@"foobar"]
error: no known method '-objectForKey:'; cast the message send to the method's return type
error: 1 errors parsing expression
我在做什麼錯?
你做錯了第一件事就是將這個問題標記爲'xcode'。 – 2012-08-16 19:51:03
'po [self dictionary]' – Joe 2012-08-16 19:54:01