Skip to content

Instantly share code, notes, and snippets.

@dataxpress
Created August 6, 2014 03:05
Show Gist options
  • Save dataxpress/6acf4b72f778f7b6c884 to your computer and use it in GitHub Desktop.
Save dataxpress/6acf4b72f778f7b6c884 to your computer and use it in GitHub Desktop.
This makes a lot of sense to me
(lldb) po label
<SKLabelNode> name:'(null)' text:'Total: 581' fontName:'Helvetica' position:{160, 286.5}
(lldb) po label.frame
error: type of property 'frame' ('CGRect') does not match type of accessor 'frame' ('<unknown type>')
error: unsupported expression with unknown type
error: instance method 'isPaused' has incompatible result types in different translation units ('char' vs. 'BOOL' (aka 'signed char'))
error: instance method 'scene' has incompatible result types in different translation units ('id' vs. 'SKScene *')
error: instance method 'physicsBody' has incompatible result types in different translation units ('id' vs. 'SKPhysicsBody *')
error: instance method 'isHidden' has incompatible result types in different translation units ('char' vs. 'BOOL' (aka 'signed char'))
error: instance method 'frame' has incompatible result types in different translation units ('<unknown type>' vs. 'CGRect')
error: instance method 'position' has incompatible result types in different translation units ('<unknown type>' vs. 'CGPoint')
error: instance method 'isUserInteractionEnabled' has incompatible result types in different translation units ('char' vs. 'BOOL' (aka 'signed char'))
error: instance method 'name' has incompatible result types in different translation units ('id' vs. 'NSString *')
error: instance method 'userData' has incompatible result types in different translation units ('id' vs. 'NSMutableDictionary *')
error: instance method 'children' has incompatible result types in different translation units ('id' vs. 'NSArray *')
error: instance method 'parent' has incompatible result types in different translation units ('id' vs. 'SKNode *')
error: instance method 'undoManager' has incompatible result types in different translation units ('id' vs. 'NSUndoManager *')
error: unsupported expression with unknown type
note: declared here
note: instance method 'isPaused' also declared here
note: instance method 'scene' also declared here
note: declared here with type 'SKPhysicsBody *'
note: instance method 'physicsBody' also declared here
note: declared here with type 'BOOL' (aka 'signed char')
note: instance method 'isHidden' also declared here
note: declared here with type 'BOOL' (aka 'signed char')
note: instance method 'frame' also declared here
note: declared here with type 'CGPoint'
note: declared here with type 'NSString *'
note: instance method 'position' also declared here
note: instance method 'isUserInteractionEnabled' also declared here
note: instance method 'name' also declared here
note: declared here with type 'BOOL' (aka 'signed char')
note: instance method 'userData' also declared here
note: declared here with type 'NSMutableDictionary *'
note: instance method 'children' also declared here
note: instance method 'parent' also declared here
note: instance method 'undoManager' also declared here
error: 15 errors parsing expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment