We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi!
I ran into a memory leak in my project earlier and I tracked it down to -setupLabel. I found out that issue #23 is still there because the line
if ([notification.userInfo objectForKey:@"delegate"] == self.window) {
still refers to self instead of weakSelf
self
weakSelf
I'm pretty new with Objective-C, so I apologize if I'm mistaken. Anyway, thanks for the great work.
The text was updated successfully, but these errors were encountered:
Eliminate strong reference to self in block (ref issue #49).
49ed15e
Good catch, thanks! Incorporated this fix into v1.4.1.
Sorry, something went wrong.
No branches or pull requests
Hi!
I ran into a memory leak in my project earlier and I tracked it down to -setupLabel. I found out that issue #23 is still there because the line
still refers to
self
instead ofweakSelf
I'm pretty new with Objective-C, so I apologize if I'm mistaken.
Anyway, thanks for the great work.
The text was updated successfully, but these errors were encountered: