Lldb - Failed to resolve class to call Objective-C static method

What happened to lldb? I did this many times, but now it does not work. (Xcode 6.4 and Xcode 7.0-beta)

(lldb) po [UIApplication sharedApplication] Error [IRForTarget]: Couldn't resolve the class for an Objective-C static method call error: 0 errors parsing expression error: The expression could not be prepared to run in the target (lldb) p @[@"", @""] Error [IRForTarget]: Couldn't resolve the class for an Objective-C static method call error: 0 errors parsing expression error: The expression could not be prepared to run in the target (lldb) po @[@"", @""] Error [IRForTarget]: Couldn't resolve the class for an Objective-C static method call error: 0 errors parsing expression error: The expression could not be prepared to run in the target (lldb) e id $a = @[@"11"] Error [IRForTarget]: Couldn't resolve the class for an Objective-C static method call error: 0 errors parsing expression error: The expression could not be prepared to run in the target 

Update

It might have been a problem with my iPod touch on ios 9.0 beta, but on my colleague iPad with ios 8.4 everything works fine. The problem is resolved.

+6
source share

All Articles