Skip to content

Instantly share code, notes, and snippets.

@NZKoz
Created August 9, 2012 01:07
Show Gist options
  • Save NZKoz/3300142 to your computer and use it in GitHub Desktop.
Save NZKoz/3300142 to your computer and use it in GitHub Desktop.
LLDB is a huge piece of turd
(lldb) p newView.alpha
error: property 'alpha' not found on object of type 'UIView *'
error: 1 errors parsing expression
(lldb) p [newView alpha]
error: no known method '-alpha'; cast the message send to the method's return type
error: 1 errors parsing expression
(lldb) p (CGFloat)[newView alpha]
(CGFloat) $1 = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment