You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This might become too spammy, so perhaps this should be optional or another command?
The class_copyIvarList docs mention explicitly "Any instance variables declared by superclasses are not included."
But this could be done with something like:
id object = <instance>;
while ([object != nil) {
// Print out ivars and the name of the current class.
// Print out newline.
object = [object superclass];
}
The text was updated successfully, but these errors were encountered:
This might become too spammy, so perhaps this should be optional or another command?
The
class_copyIvarList
docs mention explicitly "Any instance variables declared by superclasses are not included."But this could be done with something like:
The text was updated successfully, but these errors were encountered: