Skip to content

Commit

Permalink
Merge pull request #3 from streeter/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in the Readme
  • Loading branch information
JaviSoto committed Mar 6, 2013
2 parents 12c1314 + eefba9b commit 2932b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -67,7 +67,7 @@ Enabling `MSZombieHunter` makes all objects stay alive when they receive the dea

If you look at the implementation in ```MSViewControllerLeakHunter.m```, it's very naive. All it does is swizzle some methods for every UIViewController instance to discover when a view controller disappear from screen( *it gets a ```viewDidDisappear:``` call* ), but isn't deallocated after a certain period of time.

If this happens, it doesn't guarantee 100% that the view controller leaked. For example, if it's inside a ```UITabBarController```, it may disapepar when you select another tab, but it's still retained by the tabbar, and it hasn't leaked.
If this happens, it doesn't guarantee 100% that the view controller leaked. For example, if it's inside a ```UITabBarController```, it may disappear when you select another tab, but it's still retained by the tabbar, and it hasn't leaked.

But it will help you discover, for example, view controllers that you push onto a navigation controller stack, and aren't deallocated when you pop them tapping on the back button.

Expand Down

0 comments on commit 2932b45

Please sign in to comment.