陈斌彬的技术博客

Stay foolish,stay hungry

XLScrollViewer

网址

http://code4app.com/ios/XLScrollViewerDemo/54b4ad90933bf080748b6de3

使用方法:

复制XLScrollViewer文件夹到项目中即可使用。 
#import "XLScrollViewer.h" 
demo代码: 
CGRect frame =CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height -64);//如果没有导航栏,则去掉64 

    //对应填写两个数组 
    NSArray *views =@[[View1 new],[View2 new],[View3 new],[View4 new],[View5 new],[View6 new],[View7 new]]; 
    NSArray *names =@[@"首页",@"红色",@"橙色",@"黄色",@"绿色",@"蓝色",@"紫色"]; 
    //创建使用 
    self.scroll =[XLScrollViewer scrollWithFrame:frame withViews:views withButtonNames:names withThreeAnimation:111];//三中动画都选择 

    //自定义各种属性等等。。 
//    self.scroll.xl_topBackImage =[UIImage imageNamed:@"10.jpg"]; 
//    self.scroll.xl_topBackColor =[UIColor yellowColor]; 
//    self.scroll.xl_sliderColor =[UIColor blackColor]; 

    //加入控制器视图 
    [self.view addSubview:self.scroll];