Things like this drive me crazy when debugging:
(lldb) p self.bounds error: unsupported expression with unknown type error: unsupported expression with unkno
Try with following expression,
p self.view.bounds.size.width
or use,
po self.view
p - Print is only uses to print normal/simple values while, po - Print Object works same as NSLog to print value of an object