Uncodin / bypass

Skip the HTML, Bypass takes markdown and renders it directly on Android and iOS.
http://uncodin.github.com/bypass/
Apache License 2.0
1.51k stars 193 forks source link

Fix strong instance variable assignation #93

Closed heydamianc closed 11 years ago

heydamianc commented 11 years ago

ARC creates strong references to objects by default. In the code, I may have introduced a few Cocoa instance variables. This will cause a memory leak to occur and needs to be fixed.

See the Transitioning to Arc Release Notes release notes for more information. Search for:

“Assigned” instance variables become strong.
heydamianc commented 11 years ago

I misread the documentation that I mentioned above. ARC uses strong references by default, but releases the referenced object in the deallocator. This is not a bug.