- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS实现无限循环图片轮播器的封装由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
项目中很多时候会碰到这个需求,实现多张图片的无限循环轮转,以前做过,项目中几个地方的都用到了,当时没有封装,几个地方都拷贝几乎一样的代码,代码复用性不好,今天没事封装了一下,使用起来比较简单.
首先,说说我实现循环轮转图片的思想,在UIScrollView中添加了3个UIImageView,并排排列,我们看到的永远只是第二个UIImageView,这样的话,你一直可以向左,向右滑动,当你向左滑动是,这是你滑动到了最后一个UIImageView不能在向左边滑动了,这时,我在后面悄悄的将第二个UIImageView图片设置为当前要显示的图片,调整UIScrollView的contentOffset属性,如:
[_contentScrollView setContentOffset:CGPointMake(self.bounds.size.width, 0) animated:NO](使用者根本感觉不出来这种变化)所以,此时,你看到的又是第二个UIImageView,所以此时你又可以向左滑动,当你向右边滑动时候处理类似,导致结果你可以向左边,右边无线循环轮转图片.
JGCirculateSwitchImgView.h头文件 。
1
2
3
|
@interface JGCirculateSwitchImgView : UIView
@property(nonatomic,strong)NSArray *imgUrlArr;
@end
|
头文件中只有一个需要设置的成员变量imgUrlArr数组,就是你要显示图片路径的数组,将通过这个数组访问图片.
JGCirculateSwitchImgView.m文件 。
1
2
3
4
5
6
7
8
9
10
11
12
|
typedef
NS_ENUM(NSInteger, SwitchDirection)
{
//未成功旋转
SwitchDirectionNone = -1,
//向右旋转图片
SwitchDirectionRight = 0,
//向左训转图片
SwitchDirectionLeft = 1,
};
|
定义了SwitchDirection枚举,表示图片向左,向右轮转,或者什么也不做.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//默认5秒训转图片一次,可以根据需要改变
#define WiatForSwitchImgMaxTime 5
#import "JGCirculateSwitchImgView.h"
#import "UIImageView+WebCache.h"
@interface JGCirculateSwitchImgView ()
//底部UIScrollView
@property(nonatomic,weak)UIScrollView *contentScrollView;
//显示页码的UIPageControl控件
@property(nonatomic,weak)UIPageControl *pageControlView;
//用保存当前UIPageControl控件显示的当前位置
@property(nonatomic,assign)NSInteger currentPage;
//用于保存当前显示图片在图片urlArr数组中的索引
@property(nonatomic,assign)NSInteger currentImgIndex;
//UIScrollView上的三个UIImgaView这里通过3个UIImageView实现无限循环图片轮转
@property(nonatomic,weak)UIImageView *imgView1;
@property(nonatomic,weak)UIImageView *imgView2;
@property(nonatomic,weak)UIImageView *imgView3;
@property(nonatomic,assign)
BOOL
isDragImgView;
//SwitchDirection类型,用于保存滑动的方向
@property(nonatomic,assign)SwitchDirection swDirection;
@end
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
-(id)initWithFrame:(CGRect)frame
{
if
(self = [super initWithFrame:frame])
{
[self createContentScrollView];
[self createPageControlView];
//默认第一页
_currentPage = 0;
//默认显示第一张图片
_currentImgIndex = 0;
_isDragImgView = NO;
_swDirection = SwitchDirectionNone;
}
return
self;
}
|
创建UIScrollView代码 。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-(
void
)createContentScrollView
{
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.bounds];
scrollView.delegate = self;
scrollView.showsHorizontalScrollIndicator = NO;
scrollView.shouldGroupAccessibilityChildren = NO;
scrollView.pagingEnabled = YES;
[self addSubview:scrollView];
_contentScrollView = scrollView;
}
|
创建UIPageControl 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-(
void
)createPageControlView
{
UIPageControl *pageControlVw = [[UIPageControl alloc] init];
pageControlVw.frame = CGRectMake(0, 0, 80, 20);
pageControlVw.center = CGPointMake(self.center.x, self.bounds.size.height - 20);
pageControlVw.backgroundColor = [UIColor redColor];
_pageControlView.pageIndicatorTintColor = [UIColor yellowColor];
_pageControlView.currentPageIndicatorTintColor = [UIColor purpleColor];
[self addSubview:pageControlVw];
_pageControlView = pageControlVw;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
|
//value对Count取模,并保证为正值
//这里很重要,是实现无限循环的重要的一步,比如现在显示的是第一张图片,_currentImgIndex=0,向左滑动后就显示_currentImgIndex+1张图片,可是_currentImgIndex+1可能回大于_imgUrlArr的数组count,这里取模,其次还要保证为正数,比如,如果向右边滑动是就显示_currentImgIndex-1张图片,_currentImgIndex-1取模也可能为负数,此时加上count保证为正数
-(NSInteger)switchToMValue:(NSInteger)value Count:(NSInteger)count
{
NSInteger result = value % count;
return
result >=0 ? result : result + count;
}
|
重写imgUrlArr的set方法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
-(
void
)setImgUrlArr:(NSArray *)imgUrlArr
{
_imgUrlArr = [imgUrlArr copy];
NSInteger count = imgUrlArr.count;
if
(count <= 0 )
{
return
;
}
//如果只显示一张图片,那就没有旋转情况
if
(count == 1)
{
UIImageView *imgView = [[UIImageView alloc]init];
imgView.frame = CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height);
[_contentScrollView addSubview:imgView];
_pageControlView.numberOfPages = 1;
_pageControlView.currentPage = 0;
_contentScrollView.contentSize = CGSizeMake(self.bounds.size.width, self.bounds.size.height);
NSURL *imgUrl = [NSURL URLWithString:imgUrlArr[0]];
[imgView sd_setImageWithURL:imgUrl placeholderImage:nil];
return
;
}
if
(count > 1)
{
//这里只使用3个ImgView轮转多张图片,数量2,3,4,5,6...
for
(
int
i = 0; i < 3 ;i++)
{
UIImageView *imgView = [[UIImageView alloc] init];
imgView.frame = CGRectMake(i * self.bounds.size.width, 0, self.bounds.size.width, self.bounds.size.height);
imgView.layer.masksToBounds = YES;
NSString *urlStr = urlStr = _imgUrlArr[[self switchToValue:i-1 Count:count]];
NSURL *imgUrl = [NSURL URLWithString:urlStr];
[imgView sd_setImageWithURL:imgUrl placeholderImage:nil];
if
(i == 0)
{
_imgView1 = imgView;
}
else
if
(i == 1)
{
_imgView2 = imgView;
}
else
if
(i == 2)
{
_imgView3 = imgView;
}
[_contentScrollView addSubview:imgView];
}
_pageControlView.numberOfPages = count;
_pageControlView.currentPage = 0;
_contentScrollView.contentSize = CGSizeMake(self.bounds.size.width * 3, self.bounds.size.height);
_currentImgIndex = 0;
[_contentScrollView setContentOffset:CGPointMake(self.bounds.size.width, 0) animated:NO];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//循环轮转图片
[self switchImg];
});
}
}
|
5秒旋转图片 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
-(
void
)switchImg
{
while
(1)
{
[NSThread sleepForTimeInterval:WiatForSwitchImgMaxTime];
//如果正在拖拽图片,此次作废
if
(_isDragImgView) {
continue
;
}
_currentPage = [self switchToValue:_currentPage + 1 Count:_imgUrlArr.count];
dispatch_async(dispatch_get_main_queue(), ^{
_pageControlView.currentPage = _currentPage;
_contentScrollView.contentOffset = CGPointMake(2 * self.bounds.size.width, 0);
[self reSetImgUrlWithDirection:SwitchDirectionLeft];
});
}
}
|
当手动旋转图片 。
1
2
3
4
5
6
7
8
9
10
11
|
-(
void
)switchImgByDirection:(SwitchDirection)direction
{
if
(direction == SwitchDirectionNone) {
return
;
}
[self reSetImgUrlWithDirection:direction];
[_contentScrollView setContentOffset:CGPointMake(self.bounds.size.width, 0) animated:NO];
}
|
旋转图片后重新调整3个UIImageView显示的内容,如实现思想所述 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
-(
void
)reSetImgUrlWithDirection:(SwitchDirection)direction
{
if
(direction == SwitchDirectionRight) {
[_imgView1 sd_setImageWithURL:[NSURL URLWithString:_imgUrlArr[[self switchToValue:_currentImgIndex - 2 Count:_imgUrlArr.count]]] placeholderImage:nil];
[_imgView2 sd_setImageWithURL:[NSURL URLWithString:_imgUrlArr[[self switchToValue:_currentImgIndex - 1 Count:_imgUrlArr.count]]] placeholderImage:nil];
[_imgView3 sd_setImageWithURL:[NSURL URLWithString:_imgUrlArr[[self switchToValue:_currentImgIndex Count:_imgUrlArr.count]]] placeholderImage:nil];
_currentImgIndex = [self switchToValue:_currentImgIndex - 1 Count:_imgUrlArr.count];
}
else
if
(direction == SwitchDirectionLeft)
{
[_imgView1 sd_setImageWithURL:[NSURL URLWithString:_imgUrlArr[[self switchToValue:_currentImgIndex Count:_imgUrlArr.count]]] placeholderImage:nil];
[_imgView2 sd_setImageWithURL:[NSURL URLWithString:_imgUrlArr[[self switchToValue:_currentImgIndex + 1 Count:_imgUrlArr.count]]] placeholderImage:nil];
[_imgView3 sd_setImageWithURL:[NSURL URLWithString:_imgUrlArr[[self switchToValue:_currentImgIndex + 2 Count:_imgUrlArr.count]]] placeholderImage:nil];
_currentImgIndex = [self switchToValue:_currentImgIndex + 1 Count:_imgUrlArr.count];
}
}
|
实现UIScrollVie3个代理方法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#pragma mark -------------Delegate---------------
//记住滑动的方向
- (
void
)scrollViewDidScroll:(UIScrollView *)scrollView
{
static
float
newx = 0;
static
float
oldx = 0;
newx= scrollView.contentOffset.x ;
if
(newx != oldx )
{
if
(newx > oldx)
{
_swDirection = SwitchDirectionLeft;
}
else
if
(newx < oldx)
{
_swDirection = SwitchDirectionRight;
}
oldx = newx;
}
}
- (
void
)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
_isDragImgView = YES;
}
- (
void
)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
//向左旋转
if
(_swDirection == SwitchDirectionLeft)
{
_currentPage = [self switchToValue:_currentPage + 1 Count:_imgUrlArr.count];
}
//向右旋转
else
if
(_swDirection == SwitchDirectionRight)
{
_currentPage = [self switchToValue:_currentPage - 1 Count:_imgUrlArr.count];
}
_pageControlView.currentPage = _currentPage;
if
(_swDirection != SwitchDirectionNone) {
[self switchImgByDirection:_swDirection];
}
_isDragImgView = NO;
}
|
以上为实现代码,现在看看怎么用,例如:
1
2
3
4
5
6
7
8
9
10
|
JGCirculateSwitchImgView *jView = [[JGCirculateSwitchImgView alloc] initWithFrame:CGRectMake(20,100, 280, 250)];
NSArray *imgUrlArr = @[@
"http://www.blisscake.cn/Upload/Product/Show/Source/ps_1507201119031647109.jpg"
,
@
"http://www.blisscake.cn/Upload/Product/Show/Source/ps_1507201116215754685.jpg"
,
@
"http://www.blisscake.cn/Upload/Product/Show/Source/ps_1507201115524758041.jpg"
,
@
"http://www.blisscake.cn/Upload/Product/Show/Source/ps_1507201114495822068.jpg"
,
@
"http://www.blisscake.cn/Upload/Product/Show/Source/ps_1507201107522493367.jpg"
];
jView.imgUrlArr = imgUrlArr;
[self.view addSubview:jView];
|
可以看到封装之后,代码的重用性很高,使用起来很简单,就这么4句代码就可以实现图片的无限循环轮转.
以上就是本文的全部内容,希望对大家的学习有所帮助.
最后此篇关于iOS实现无限循环图片轮播器的封装的文章就讲到这里了,如果你想了解更多关于iOS实现无限循环图片轮播器的封装的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想使用 Angular.js 转换从服务器获取的图像数据(用于 ionic 框架),我使用了这段代码: $http.post(link, { token: token,
我正在为我的应用制作一个登陆页面。如果它们在 iOS 设备上,我希望它只显示“App Store”图标,但在 Android 上隐藏它。如果它们在 Android 设备上,则只有“Play Store
如何在同一页面上多次显示同一张图片? function xdf(){ for (i=0;ihello world'); } } 此代码显示“hello world”10 次。我想要同样的东西,
您好,我有一个 1px 的 png 文件,我试图将其设置为两个水平相邻的 div 的背景图像。html 和 css 如下:- hi hello css是这样的 div { width: 50%
我的 PHP 项目安装了 Prestashop 1.4.9.0。当我添加一个新产品时,我上传了一个PNG格式的图片,但是当它在客户端显示时,图片是JPG格式的。 如何保留图片扩展名? 最佳答案 在后台
我用 http://www.regexper.com查看一个象形表示正则表达式很多。我想要一种理想的方法: 向站点发送正则表达式 打开显示该表达式的站点 例如,让我们使用正则表达式:"\\s*foo[
我不知道为什么在 MAC OS X (Mail 6.2) 的邮件客户端中图像显示如下: 和其他邮件客户端,如 gmail、outlook 或 private,图像是正确的,看起来像这样: PHP邮件程
我正在使用此处找到的示例。 Mozilla developers 我对这个例子很感兴趣。 function upload(postUrl, fieldName, filePath) { var f
我不知道为什么在 MAC OS X (Mail 6.2) 的邮件客户端中图像显示如下: 和其他邮件客户端,如 gmail、outlook 或 private,图像是正确的,看起来像这样: PHP邮件程
我的问题是如何根据用户在javafx中选择的复选框和/或单选按钮生成带有汽车图片设置的按钮? 我正在用汽车图片模拟汽车经销商网站。用户应该能够通过单击复选框和/或单选按钮选择来过滤显示的图片。 我首先
我正在开发Java客户端,它应该支持多种语言。为了翻译文本,我使用 Java ResourceBoundle,它工作正常。 现在问题出在图像上。客户端应加载大约 50 张图像,这些图像是棋盘游戏的特定
我对 jQuery 还很陌生,但我正在寻找一个简单的脚本,通过淡入和淡出的方式在标题中循环 3 或 4 个背景图像。它们是透明的 png,因此我尝试过的许多 slider 都不起作用。 有什么想法吗?
我有一个 HTML 文档,其中包含本地文件的图像,例如: ios - 物理主体大于它分配给的纹理(图片)
我的 Sprite “physicsBody ”属性之一出现问题。 我已经放置了physicsBody节点“barn ”,直接位于 non-physicsBody 之上节点“mound”没有任何问题。
我想剪切图片的特定部分并用它来将剪切的图像与存储在 HDD 中的另一个图像进行比较。问题是我不知道如何获取源图像的特定部分。我知道要裁剪的图像的位置 (X,Y)。 最佳答案 这将加载原始版本并创建
如何使用裁剪实用程序在 javascript 中实现图像 uploader 。你如何通过 AJAX 提交图像文件?解决方案是否跨域兼容? 最佳答案 要实现具有裁剪功能的图片上传小部件,您必须: 将图像
public void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityRes
我想在我的 android 应用程序中显示一个国家的图片。国家必须按地区划分。因此,当用户单击特定区域时,应打开特定屏幕。区域也应该用线分隔,以便用户可以看到区域的开始/结束位置。 这是一个国家的例子
首先我想对这个问题表示歉意,因为我知道已经有很多人问过这个问题了。但我搜索的所有答案都没有解决我的问题。所以希望您考虑这个问题并帮助我解决这个问题。 所以基本上我正在尝试上传图像文件,当我提交它时,会
我几乎有了想要的数据...但需要帮助过滤它。 (图在底部) 下面的查询返回状态为 Member-id5 的所有记录,但我需要对其进行过滤。例如:如果我对等做了一个简单的查询。 (exp_channel
我是一名优秀的程序员,十分优秀!