I have a breakpoint set and want to print my UITextField's superview. I type po myTextField.superview
but I receive the following error:
error: instance method 'undoManager' has incompatible result types in different translation units ('id' vs. 'NSUndoManager *')
note: instance method 'undoManager' also declared here
error: 1 errors parsing expression
What does this mean and how can I print my superview? I found a link that provides a janky workaround in code: http://openradar.io/15890965, but I would like a better solution.
po tableView.gestureRecognizers
on a category ofUITableView
. – Recluse