Я установил точку останова...
если:
(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 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 return type
error: 1 errors parsing expression
Что я делаю неправильно?