-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Memory problem with JotView #40
Comments
adam, help!!! |
Something must still be holding a reference to the JotView after you close it. double check that you've nil'd all references to the view in your controllers when you close it. The best way i've found to debug memory problems like this is to use Instruments tool Allocations, and turn on reference counting in it. that'll help track down which reference is holding onto the JotView. |
well, the displayLink in the JotView caused a reference problem |
Great find! i've pushed up your fix for the |
When I want to close it, [JotView dealloc] will never be executed.
The text was updated successfully, but these errors were encountered: