vote up 2 vote down star

Say I have an event listener tied to a component and I want to remove the event listener from the component so it can be garbage collected. The problem is I don't know what kind of object it is or what event listeners it has.

Basically how can I find out what event listeners an object has and how can I remove one or all of them?

flag

1 Answer

vote up 2 vote down check

Duplicate.

When you add the event listener mark it as a weak refernce by setting the last parameter as true. You no longer need to worry about removing it. I posted a longish answer here, so you may want to take a look.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.