美文网首页
轮播图控件 带描述文字的轮播图控件

轮播图控件 带描述文字的轮播图控件

作者: 码修 | 来源:发表于2017-04-19 15:45 被阅读157次

    项目需导入SDWebImage

    类型一

    简单的轮播图

    轮播下.gif
    /**
        加载演示类型1  图
        */
       _jy2ScrollView = [[JYScrollView alloc] initWithFrame:CGRectMake(0, Fit375(350), kScreenWidth, Fit375(230))];
       [_jy2ScrollView bannerWithArray:array imageType:JYImageURLType placeHolder:@"placeholderImage.jpg" tapAction:^(NSInteger index) {
           NSLog(@"点击了轮播图click   NO.%ld",index);
       }];
       _jy2ScrollView.timeInterval = 4;
       [self.view addSubview:_jy2ScrollView];
    
    

    类型二

    带描述的轮播图

    轮播上.gif
    /**
         加载演示类型2  图 + 描述
         */
        /**
         set UI frame,JYScrollview's pageControl is depend on the screen's width,if you want to make a different one you could click JYScrollView.m to change the size or something.
         */
        _jyScrollView = [[JYScrollView alloc] initWithFrame:CGRectMake(0, Fit375(50), kScreenWidth, Fit375(230))];
        /**
         *  the array's count must equals to the titleArr's
         *  loadScrollViewData
         */
        [_jyScrollView bannerWithArray:array titleArr:titleArr imageType:JYImageURLType placeHolder:@"placeholderImage.jpg" tapAction:^(NSInteger index) {
            NSLog(@"点击了轮播图click   NO.%ld",index);
        }];
        _jyScrollView.timeInterval = 1;
        [self.view addSubview:_jyScrollView];
    

    自定义pageControl的位置

        /**
         *  or you can set the pageControl
         *
         CGPoint center =_jy2ScrollView.pageControl.center;
         center.x = 350;
         _jy2ScrollView.pageControl.center = center;
         */
    

    如果控件哪里有什么问题,敬请斧正。

    -------github demo链接-----

    相关文章

      网友评论

          本文标题:轮播图控件 带描述文字的轮播图控件

          本文链接:https://www.haomeiwen.com/subject/fhchzttx.html