Is there a way to use [self.view recursiveDescription] in Swift? I am trying to use this method but I am getting the following error:
\'UIView\' does not hav
In swift 2.0 you can simply run:
po view.performSelector("recursiveDescription")
In (tested with iOS10 Beta3) swift 3.0 this is a bit more complex:
po let s = view.perform("recursiveDescription"); print(s)