-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
will it support dealloc
?
#3
Comments
@WayneWeiZhang where is |
@lzyy Do you have updated your code? static NSString *const AspectsHasParentToken = @"AspectsHasParentToken"; |
@WayneWeiZhang ha, was looking at the pod version, now see it. so the reason there is a |
Hooking into dealloc is quite a delicate matter. You can't retain the object, and the message forwarding process really isn't suited for that. Also the only usable position would be |
sometimes it's convenient to monitor ViewController's
dealloc
, i.e. popped from stack, butdealloc
is not triggered, so we know there is a memory leak. tried it like this with no luck.The text was updated successfully, but these errors were encountered: