I have suddenly become unable to print out object properties or call methods inside of lldb. The only thing that prints out is:
error: class '<ClassName>' has incompatible superclasses
note: inherits from superclass 'NSObject' here
This is true for even the most basic object types, such as: NSArray, NSDictionary, and NSString. Here's a specific example:
(lldb) po functie.length
error: class 'NSString' has incompatible superclasses
note: inherits from superclass 'NSObject' here
error: 1 errors parsing expression
The only methods that are available are those available in NSObject, such as -class. Extending from the previous example:
(lldb) po [functie class]
__NSCFString
If anybody has any idea what the problem is, your input would be greatly appreciated. Thank you.