I was just wondering if there is a quick and easy way of printing out to the log all of the various values of the properties to my class for debugging purposes. Like I would lik
There are now these methods on NSObject :
NSObject
@interface NSObject (Private) -(id)_ivarDescription; -(id)_shortMethodDescription; -(id)_methodDescription; @end
In swift:
myObject.perform("_ivarDescription")
Thanks to this article