Skip to content

The use of a simple with the effects of the rolling cycle view

License

Notifications You must be signed in to change notification settings

mohsinalimat/MXScrollView

 
 

Repository files navigation

MXScrollView

The use of a simple with the effects of the rolling cycle view

一款易用的可拉伸的自动循环滚动视图 集成简单易懂 自定义性强

demo demo

版本1.2.3

1.2.3 增加支持竖直滚动 //support Vertical scroll

使用 How to Use it

Installation

CocoaPods

你可以使用cocapods导入 you can use it in cocoapods

pod 'MXScrollView'   

Carthage

Carthage 也是一个很好的管理三方框架的工具

  • You can install Carthage with Homebrew using the following command:
  • 你可以使用Homebrew来安装Carthage
  • 安装完homebrew后执行下面命令
$ brew update
$ brew install carthage

在你的工程里创建一个Cartfile文件 ,并在里面写上下面这句话

github "cwxatlm/MXScrollView"

在终端里执行carthage update

  • 安装好后只需要在对应 Target 中的 Build Setting 中的 Framework Search Path 项加入以下路径
  • $(SRCROOT)/Carthage/Build/iOS

导入头文件 #import <MXScrollView/MXScrollView.h>

想对Carthage了解更多也可以看这里让自己的项目支持Carthage

Manually 手动导入

  • Drag the MXScrollView folder into your project. 把MXScrollView文件夹拖入工程
  • Targets->Build Phases->Copy Bundle Resources.
  • #imprort "MXScrollView.h"

有两种使用方式 you can use it in two ways

1.像普通控件一样使用它 use it looks like normal View

####Objective-C

MXImageScrollView *scroll = [[MXIMageScrollView alloc] initWithFrame:CGRectMake(x, y, scrollWidth, scrollHeight)];
        //数组支持传入image或imageUrl       support image or imageUrl
scroll.images =  @[
                  [UIImage imageNamed:@"picture_one"],
                  [UIImage imageNamed:@"picture_two"],
                  [UIImage imageNamed:@"picture_three"],
                  @"http://pic31.nipic.com/20130624/8821914_104949466000_2.jpg"
                  ];
scroll.animotionType = kMXTransitionRandom; //支持多特效 support serveral type
scroll.animotionDirection = kMXTransitionDirectionRandom; //支持多方向 support serveral direction
[self.view addSubview:scroll];

[scroll setTapImageHandle:^(NSInteger index) {
           //支持点击事件  support tap
        }];
        
//在你不需要的时候释放他 例如  release the timer
- (void)viewWillDisappear:(BOOL)animated {
    [scroll invalidateTimer];
}

2.加载在tableView上 load it in tableView

此时必须写为全局变量

####Objective-C

_scroll = [[MXImageScrollView alloc] initWithFrame:CGRectMake(0,
                                                         0,
                                                         CGRectGetWidth(self.view.bounds),
                                                         MXScrollViewHeight)
                                rootTableView:_tableView];
_scroll.animotionDirection = kMXTransitionDirectionRandom;
_scroll.animotionType = kMXTransitionRandom;
_scroll.pageControlPosition = kMXPageControlPositionCenter; //更改pageControl显示的位置
_scroll.images = @[
                  [UIImage imageNamed:@"picture_one"],
                  [UIImage imageNamed:@"picture_two"],
                  [UIImage imageNamed:@"picture_three"],
                  @"http://pic31.nipic.com/20130624/8821914_104949466000_2.jpg"
                  ];

[_scroll setTapImageHandle:^(NSInteger index) {
        //tap
    }];
    
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
#warning 重要,想拉伸必须实现此方法   must implement this method
    [_scroll stretchingImage];
}

//在你不需要的时候释放他 例如  release the timer
- (void)viewWillDisappear:(BOOL)animated {
    [_scroll invalidateTimer];
}

delegate


_scroll.delegate = self;

//delegate method  给图片增加副视图
- (UIView *)MXScrollView:(MXScrollView *)mxScrollView viewForImageLeftAccessoryViewAtIndex:(NSInteger)index {
    UILabel *leftLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 150, 50, 20)];
    leftLabel.backgroundColor = [UIColor clearColor];
    leftLabel.textColor = [UIColor whiteColor];
    leftLabel.text = [NSString stringWithFormat:@"第%ld页", index];
    return leftLabel;
}

//视图拉伸效果
- (UIViewAutoresizing)MXScrollView:(MXScrollView *)mxScrollView leftAccessoryViewAutoresizingMaskAtIndex:(NSInteger)index {
    switch (index) {
        case 0:
            return UIViewAutoresizingFlexibleBottomMargin;
            break;
        default:
            return UIViewAutoresizingFlexibleTopMargin;
            break;
    }
}


更多用法请参考Demo more example read in Demo

About

The use of a simple with the effects of the rolling cycle view

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 99.8%
  • Ruby 0.2%