-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling "canReorder" #20
Comments
Hmm this could be a bug. Could you give me more info about what you're trying to do? Are you trying to stop re-ordering all together i.e. re-ordering without the long press gesture? Using |
I am going to remove re-ordering from 2 Sections in my UITableView. For example; if (indexPath.section == 0) { Is this the right approach? |
No that is not the right approach. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 0) {
return NO;
}
return YES;
} |
I already tried this previously, not working as it should do.. |
It doesn't seem to be working for me, any clues?
The text was updated successfully, but these errors were encountered: