If I add a gesture recognizer to a table cell called cell, e.g.:
cell
UILongPressGestureRecognizer *_longPressRecognizer = [[UILongPressGestureRecognizer
The gesture recognizers are added to an internal NSMutableArray of the view. This array will be released once the view is deallocated. Thus -removeGestureRecognizer: doesn't need to be called manually.
-removeGestureRecognizer: