Why doesn't this work?
(lldb) po [NSString stringWithFormat:@"%f", 1.0]
error: too many arguments to method call, expected 1, have 2
error: 1 errors parsing expression
But this does:
(lldb) p (void)printf("%f", 1.0)
1.000000
Is Objective-C variable arguments syntax not supported in LLDB?