Last active
August 29, 2015 14:02
-
-
Save mikeabdullah/62c0acc03f9d6d19e959 to your computer and use it in GitHub Desktop.
Switching on allowsMultipleSelectionDuringEditing as needed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)setEditing:(BOOL)editing animated:(BOOL)animated { | |
[super setEditing:editing animated:animated]; | |
if (!_isEditingIndividualRow) { | |
self.tableView.allowsMultipleSelectionDuringEditing = editing; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment