I am creating a listener application that attaches to my app and prints to the console, Variable: "name" when the user taps on a certain component, such as Variable: button if the user taps on a UIButton with the title "button".
I am stuck on UIImagePickerControllers. Does anyone know how to get the variable name, ie, the name used to created the UIImagePicker (UIImagePickerController *imagePicker) if I have that stored as a "self" variable.
Such as, when I do NSLog(@"%@", self); it prints "<UIImagePickerController: 0x8342700>"
How can I get it to print imagePicker, (the variable name)?
Thanks in advance.