Skip to content

一个可拖拽的View,主要功能参数:1、mg_canDrag是否允许拖拽,默认关闭(可以在XIB或SB中设置); 2、mg_bounces是否需要边界弹簧效果,默认开启(可以在XIB或SB中设置); 3、mg_isAdsorb是否需要吸附边界效果,默认开启(可以在XIB或SB中设置);

License

Notifications You must be signed in to change notification settings

LYM-mg/MGDragView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MGDragView

From CocoaPods【使用CocoaPods】

pod 'MGDragView'

Manually【手动导入】

一个简单可拖拽的View,只需导入分类头文件#import "UIView+Drag.h"即可

#如何使用:

UIView *view0 = [[UIView alloc] initWithFrame:CGRectMake(120, 80, 70, 70)];
    view0.backgroundColor = [UIColor purpleColor];
    view0.mg_canDrag = YES;// 设置是否需要拖拽功能
    view0.mg_isAdsorb = NO;// 设置是否需要吸附效果
    view0.mg_bounces = YES;// 设置是否需要弹性动画
[self.view addSubview:view0];

111.gif

Version

MGDragView now is V0.0.1 .

License

DeeplinkNavigator is under MIT license. See the LICENSE file for more info.

About

一个可拖拽的View,主要功能参数:1、mg_canDrag是否允许拖拽,默认关闭(可以在XIB或SB中设置); 2、mg_bounces是否需要边界弹簧效果,默认开启(可以在XIB或SB中设置); 3、mg_isAdsorb是否需要吸附边界效果,默认开启(可以在XIB或SB中设置);

Resources

License

Stars

Watchers

Forks

Packages

No packages published