GithubHelp home page GithubHelp logo

193eric / bmdragcellcollectionview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from liangdahong/bmlongpressdragcellcollectionview

0.0 2.0 0.0 19.25 MB

支付宝类似的 UICollectionViewCell 长按拖拽重排, Drag,DragAndDrop,LongPressGestures,LongPressGesturesDrag,LongPressGesturesDragAndDrop,UICollectionView,UICollectionViewCell,UICollectionViewCellDrag,UICollectionViewCellDrag,UICollectionViewCellRearrangement,UICollectionViewRearrangement,iOS,Objective-C,OC,Gestures,

Home Page: http://idhong.com/2017/07/17/iOS-UICollectionView-Cell%E6%8B%96%E6%8B%BD%E9%87%8D%E6%8E%92%E7%9A%84%E5%AE%9E%E7%8E%B0/

License: MIT License

Ruby 0.77% Objective-C 99.23%

bmdragcellcollectionview's Introduction

BMDragCellCollectionView

Version Support Weibo GitHub stars

写在前面

最近公司准备做一个类似支付宝UICollectionViewCell拖拽重排的功能,UICollectionViewCell的任意拖拽排列,支付宝最新的版本已去掉了任意拖拽功能,而只是对常用功能进行拖拽重排,没有出现超出屏幕的情况。个人感觉应该更好,毕竟太多功能去拖拽重排对用户来说是一个特别大的工作量,只需把常用功能提即可。相应的功能点还是在对应的分组里,至于我们的需求暂时不怎么清楚,使用还是研究下任意拖拽吧。

正在编程Swift版,敬请关注 Swift版本

未来计划

  • Swift版本
  • Demo及文档完善。
  • 支付宝拖拽效果实现。
  • 今日头条频道拖拽重排效果实现。
  • 看荐拖拽重排效果实现及优化。ps:看荐的拖拽重排发现一个bug,哈哈。
  • 您认为有必要的也@我哈.

效果图

效果1

效果2

效果3

效果4

基本实现了头条的频道重排功能,额外增加了当拖拽到边沿时自动滚动的功能。

视频演示

在线视频演示

须知

BMDragCellCollectionView 基于 Xcode 8.2.1 , iOS 6+ ARC ,请使用最新正式版来编译BMDragCellCollectionView ,旧版本的Xcode 有效,但不保证会出现一些兼容性问题。

开源不易,来个star鼓励下吧

Demo运行

  1. cd BMDragCellCollectionView/BMDragCellCollectionViewDemo

  2. open BMDragCellCollectionViewDemo.xcodeproj

集成

CocoaPods

推荐使用 CocoaPods 安装,Cocoapods的使用请点这里链接1链接2链接3

  1. Podfile 中添加 pod 'BMDragCellCollectionView', '1.0.6' Version
  2. 执行 pod installpod update
  3. 使用的地方导入 "BMDragCellCollectionView.h"
  4. 如果无法找到 BMDragCellCollectionView 可用 pod setuprm ~/Library/Caches/CocoaPods/search_index.jsonpod search BMDragCellCollectionView

手动安装

  1. 通过 Clone 或者 download 下载BMDragCellCollectionView 文件夹内的所有内容。
  2. 将 BMDragCellCollectionView 内的源文件添加(拖放)到你的工程。
  3. 导入 "BMDragCellCollectionView.h"

基本使用

  • 在需要使用长按拖拽UICollectionView 的地方使用BMDragCellCollectionView代替,用法和UICollectionView一样。
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
BMDragCellCollectionView *collectionView = [[BMDragCellCollectionView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT) collectionViewLayout:layout];
collectionView.delegate = self;
collectionView.dataSource = self;
[self.view addSubview:collectionView];
  • 实现 BMDragCollectionViewDataSource协议的如下方法

此协议用于在交换时获取数据源,内部做数据源操作。

- (NSArray *)dataSourceWithDragCellCollectionView:(BMDragCellCollectionView *)dragCellCollectionView {
    return self.dataSource;
}
  • 实现 BMDragCellCollectionViewDelegate协议的如下方法

此协议用于在在内部处理好数据源时通知使用者更新数据源。

- (void)dragCellCollectionView:(BMDragCellCollectionView *)dragCellCollectionView newDataArrayAfterMove:(NSArray *)newDataArray {
    self.dataSource = [newDataArray mutableCopy];
}

BMDragCellCollectionView属性及方法说明

长按触发时间,默认是0.5秒,建议根据实际情况设值

@property (nonatomic, assign) NSTimeInterval minimumPressDuration;

是否可以拖拽 默认为YES

@property (nonatomic, assign, getter=isCanDrag) BOOL canDrag;

长按拖拽时Cell缩放比例 默认是:1.2

@property (nonatomic, assign) CGFloat dragZoomScale;

拖拽的Cell在拖拽移动时的透明度 默认是: 1.0

@property (assign, nonatomic) CGFloat dragCellAlpha;

使用者想移动到指定位置操作时

- (void)dragMoveItemToIndexPath:(NSIndexPath *)indexPath;

代理方法

当一个Cell将要开始拖拽时调用询问是否可以拖拽, YES: 可以, NO: 不可以,默认是YES

- (BOOL)dragCellCollectionViewShouldBeginMove:(BMDragCellCollectionView *)dragCellCollectionView indexPath:(NSIndexPath *)indexPath;

当将要交换时,询问是否可以交换时调用询问是否可以交换, YES: 可以, NO: 不可以,默认是YES

- (BOOL)dragCellCollectionViewShouldBeginExchange:(BMDragCellCollectionView *)dragCellCollectionView sourceIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath;

完成重排时,重排成成功时

- (void)dragCellCollectionViewDidEndDrag:(BMDragCellCollectionView *)dragCellCollectionView;

下面的三个方法在手势拖拽变化时调用,开始拖拽 正在拖拽 结束拖拽

- (void)dragCellCollectionView:(BMDragCellCollectionView *)dragCellCollectionView beganDragAtPoint:(CGPoint)point   indexPath:(NSIndexPath *)indexPath;

- (void)dragCellCollectionView:(BMDragCellCollectionView *)dragCellCollectionView changedDragAtPoint:(CGPoint)point indexPath:(NSIndexPath *)indexPath;

- (void)dragCellCollectionView:(BMDragCellCollectionView *)dragCellCollectionView endedDragAtPoint:(CGPoint)point   indexPath:(NSIndexPath *)indexPath;

结束拖拽时时是否内部自动处理,在一些需要特殊需求时可以在此方法做,如:今日头条当第一组拖拽到第二组((默认是不交换处理的)松手时需要自动把此Cell移动到第二组中的同步或者尾部。那可在此方法 返回NO,同时调用 - (void)dragMoveItemToIndexPath:(NSIndexPath *)indexPath;方法完成移动

- (BOOL)dragCellCollectionView:(BMDragCellCollectionView *)dragCellCollectionView endedDragAutomaticOperationAtPoint:(CGPoint)point section:(NSInteger)section indexPath:(NSIndexPath *)indexPath;

期待

  • 如果在使用过程中遇到BUG,希望您能Issues我。

版本历史

v1.0.6

v1.0.5

v1.0.4

v1.0.3

v1.0.2

v1.0.1

v1.0.0

MIT

BMDragCellCollectionView 使用 MIT 许可证,详情可见 LICENSE 文件

bmdragcellcollectionview's People

Contributors

idhong avatar

Watchers

 avatar  avatar

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.