一句代码集成图片引导页
[GSIntroductionView sharedWithImages:@[@"user_guid1",@"user_guid2",@"user_guid3"]];
SegmentBar 类似网易新闻 今日头条的标题栏 集成超级简单方便
ZPSegmentView * segmentView=[[ZPSegmentView alloc] initWithFrame:frame];
[segmentView setupWithtitles:@[@"汽车",@"美女",@"头条",@"财经新闻"] style:style childVcs:@[控制器] parentVc:self];
[self.view addSubview:segmentView];
然后我们可以为SegmentBar
指定自己想要的样式:
ZPSegmentBarStyle * style=[[ZPSegmentBarStyle alloc] init];
style.isScrollEnabled=NO;//导航条是否可以滚动,默认YES;
style.isShowCover=YES;//导航条是否显示遮盖效果,默认YES;
style.coverViewMargin=6;//遮盖间距;
style.isShowBottomLine=YES;//导航条下方是否显示BottomLine,默认YES;
style.bottomLineColor=[UIColor orangeColor];//BottomLine 的颜色;
style.isNeedScale=YES;//导航条是否有放大效果,默认YES;
效果图如下:
无限循环轮播两句代码即可调用:
GSInfiniteView *infiniteView = [[GSInfiniteView alloc] initWithFrame:CGRectMake(0, 64, SCREENSIZE.width, 280)];
infiniteView.imgArray = @[@"1",@"2",@"3",@"4",@"5"];//图片数组
infiniteView.desArray = @[@"第十六届",@"还是到了发生了",@"胜利大街分类数据得浪费",@"胜利大街菲利斯佛罗伦萨的积分老师讲东方闪电",@"东山街道解放路围殴我可是绝大部分快睡吧达芙妮"];//描述数组
infiniteView.imgClick = ^(NSInteger index) {
NSLog(@"点击了第 %ld 张图片",index);
};
[self.view addSubview:infiniteView];
自定义布局:
瀑布流效果
支付宝首页效果
QQ好友列表
可拉伸头部控件