Skip to content

Commit

Permalink
格式化代码。
Browse files Browse the repository at this point in the history
  • Loading branch information
liangdahong committed Aug 6, 2020
1 parent 83cfe2f commit c042a3e
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// SOFTWARE.

////////////////////
////// v3.1.2 //////
/// v3.1.2
////////////////////

#import <UIKit/UIKit.h>
Expand All @@ -46,15 +46,20 @@

/// 长按触发拖拽所需时间,默认是 0.5 秒。
@property (nonatomic, assign) NSTimeInterval minimumPressDuration;

/// 是否可以拖拽 默认为 YES。
@property (nonatomic, assign, getter=isCanDrag) IBInspectable BOOL canDrag;
/// 长按拖拽时拖拽中的的 Cell 缩放比例,默认是 1.2 倍。

/// 长按拖拽时拖拽中的的 Cell 缩放比例,默认是 1.2 倍。
@property (nonatomic, assign) IBInspectable CGFloat dragZoomScale;

/// 拖拽的 Cell 在拖拽移动时的透明度 默认是: 1.0 不透明。
@property (nonatomic, assign) IBInspectable CGFloat dragCellAlpha;

/// 拖拽到 UICollectionView 边缘时 UICollectionView 的滚动速度
/// 默认为: 8.0f ,建议设置 5.0f 到 15.0f 之间。
@property (nonatomic, assign) IBInspectable CGFloat dragSpeed;

/// 拖拽 View 的背景颜色,默认和被拖拽的 Cell 一样。
@property (nonatomic, strong) IBInspectable UIColor *dragSnapedViewBackgroundColor;

Expand Down

0 comments on commit c042a3e

Please sign in to comment.