Skip to content
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

drag-n-frop improvement #45

Open
viking2009 opened this issue Oct 24, 2013 · 2 comments
Open

drag-n-frop improvement #45

viking2009 opened this issue Oct 24, 2013 · 2 comments

Comments

@viking2009
Copy link

may be this will be better solution

    CGRect intersectionFrame = CGRectIntersection(self.currentView.frame, theFrame);
    if (intersectionFrame.size.height > theFrame.size.height/2 && intersectionFrame.size.width > theFrame.size.width/2) {
        [self dropCurrentItemOnIndexPath:newIndePath];
    } else {
        [self moveCurrentItemToIndexPath:newIndePath];
    }
viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 24, 2013
- update LXReorderableCollectionViewFlowLayout
- update demo
viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 24, 2013
- fix intersection actions
- simplify currentView
viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 24, 2013
- remove drag-n-drop layout
viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 24, 2013
- use layout from master branch
viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 24, 2013
- update LXReorderableCollectionViewFlowLayout for drag-and-drop support
- update demo
viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 24, 2013
- fix: no card
@viking2009
Copy link
Author

if there is a small line or item spacing moveCurrentItemToIndexPath never called
so revert to previous condition

in my project (vertical layout with 2pt line spacing, and one elements in row) I use

    CGRectDivide(theFrame, &theLeftFrame, &theRightFrame, CGRectGetHeight(theFrame) / 2.0f, CGRectMinYEdge);

@lxcid
Copy link
Owner

lxcid commented Oct 25, 2013

Cool. It will take me sometime to merge this into master though. But keep the commits coming. Thanks for the help!

viking2009 pushed a commit to viking2009/LXReorderableCollectionViewFlowLayout that referenced this issue Oct 25, 2013
- fix dropCurrentItemOnIndexPath
- revert condition for drop/move
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants