Skip to content

Instantly share code, notes, and snippets.

@NZKoz
Created October 7, 2012 20:31
Show Gist options
  • Save NZKoz/3849497 to your computer and use it in GitHub Desktop.
Save NZKoz/3849497 to your computer and use it in GitHub Desktop.
(lldb) po NSStringFromCGRect(self.frame)
error: property 'frame' not found on object of type 'SLComposeCardView *'
error: 1 errors parsing expression
(lldb) po NSStringFromCGRect([self frame])
error: no known method '-frame'; cast the message send to the method's return type
error: 1 errors parsing expression
(lldb) po NSStringFromCGRect((CGRect)[self frame])
error: 'NSStringFromCGRect' has unknown return type; cast the call to its declared return type
error: 1 errors parsing expression
(lldb) po (NSString *)NSStringFromCGRect((CGRect)[self frame])
(NSString *) $3 = 0x09959d30 {{0, 0}, {320, 548}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment