Created
July 22, 2012 13:03
-
-
Save joaofranca/3159588 to your computer and use it in GitHub Desktop.
gist 5: iOS - Customize UITableViewCell delete/move overlay views while editing
This file contains hidden or 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
// cells are movable | |
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath{ | |
return YES; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment