GithubHelp home page GithubHelp logo

Comments (4)

1715 avatar 1715 commented on May 13, 2024 3

That's old but might be useful for someone, since the issue hasn't been resolved yet.
I have managed to resolve it by using UITableViewDelegate method as below

func tableView(_ tableView: UITableView, targetIndexPathForReorderFromRowAt sourceIndexPath: IndexPath, to proposedDestinationIndexPath: IndexPath) -> IndexPath
{
        if sourceIndexPath.section != proposedDestinationIndexPath.section {
            return sourceIndexPath
        } else {
            return proposedDestinationIndexPath
        }
}

This way the table view cell will be able to be reordered only with cells from the same section.

from swiftreorder.

imobdevtech avatar imobdevtech commented on May 13, 2024

targetIndexPathForReorderFromRowAt

Sir this is not tableview delegate method but it is framework delegate method.

from swiftreorder.

1715 avatar 1715 commented on May 13, 2024

targetIndexPathForReorderFromRowAt

Sir this is not tableview delegate method but it is framework delegate method.

@imobdevtech You are totally right, sorry for confusion.

from swiftreorder.

adamshin avatar adamshin commented on May 13, 2024

I'm a little late following up on this one, sorry. Dragging cells between sections is definitely possible. The key is to make sure you update your data model in the tableView(_:UITableView, reorderRowAt:IndexPath, to:IndexPath) delegate method. This method can be called multiple times during the course of a drag-and-drop gesture; it fires whenever the user drags the cell over a new destination row.

If you don't update your data model (i.e. whatever you're using to determine the return value of tableView(_:numberOfRowsInSection:)), you'll run into crashes as mentioned above. You can check out an example here in the sample project.

from swiftreorder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.