gpt4 book ai didi

iOS实现图片自动切换效果

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章iOS实现图片自动切换效果由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例为大家分享了iOS实现图片自动切换的具体代码,供大家参考,具体内容如下 。

?
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
#import "ViewController.h"
#define ImageViewCount 5
 
@interface ViewController ()<UIScrollViewDelegate>
 
@property (weak, nonatomic) IBOutlet UIScrollView *imageScrollView;
@property (weak, nonatomic) IBOutlet UIPageControl *imageViewPageControl;
@property (strong, nonatomic) NSTimer *timer;
@end
 
@implementation ViewController
 
- ( void )viewDidLoad {
  [super viewDidLoad];
 
  [self addImageView2ScrollView];
  self.imageScrollView.contentSize = CGSizeMake(self.imageScrollView.frame.size.width * ImageViewCount, 0);
 
  self.imageScrollView.delegate = self;
  self.imageScrollView.pagingEnabled = YES; //UIScrollView支持拖动分页
  self.imageViewPageControl.numberOfPages = ImageViewCount;
 
  [self addScrollTimer];
}
 
- ( void )rotatePic{
  int currentPageIndex = self.imageViewPageControl.currentPage;
  if (++currentPageIndex == 5){
   currentPageIndex = 0;
  }
  CGFloat offsetX = currentPageIndex * self.imageScrollView.frame.size.width;
  [UIView animateWithDuration:1 animations:^{
   self.imageScrollView.contentOffset = CGPointMake(offsetX, 0);
  }];
}
 
/**添加图片到imageScrollView*/
- ( void )addImageView2ScrollView{
  CGFloat imageWidth = self.imageScrollView.frame.size.width;
  CGFloat imageHeight = self.imageScrollView.frame.size.height;
  for ( int i = 0;i <= ImageViewCount;i++){
   UIImageView *imageInScroll = [[UIImageView alloc] init];
   imageInScroll.frame = CGRectMake(i * imageWidth, 0, imageWidth, imageHeight);
   imageInScroll.image = [UIImage imageNamed:[NSString stringWithFormat:@ "img_%02d" ,i + 1]];
   [self.imageScrollView addSubview:imageInScroll];
  }
}
 
// 正滚动时执行
- ( void )scrollViewDidScroll:(UIScrollView *)scrollView{
  CGFloat offX = self.imageScrollView.contentOffset.x; //(0,0)距离content内部左上顶点的x轴长度
  NSLog(@ "~~~~~~~%f ^^^^^^%f" , offX, self.imageScrollView.frame.size.width);
  int currentPageIndex = (offX + .5f * self.imageScrollView.frame.size.width) / self.imageScrollView.frame.size.width;
  self.imageViewPageControl.currentPage = currentPageIndex;
}
 
- ( void )addScrollTimer{
  self.timer = [NSTimer timerWithTimeInterval:2 target:self selector:@selector(rotatePic) userInfo:nil repeats:YES];
  [[NSRunLoop mainRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
}
 
- ( void )removeScrollTimer{
  [self.timer invalidate]; //释放定时器
  self.timer = nil;
}
 
// 开始准备滚动时执行 移除定时滚动操作
- ( void )scrollViewWillBeginDragging:(UIScrollView *)scrollView{
  NSLog(@ "~~~scrollViewWillBeginDragging" );
  [self removeScrollTimer];
}
 
// 结束滚动后执行 添加定时滚动操作
- ( void )scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:( BOOL )decelerate{
  NSLog(@ "~~~scrollViewDidEndDragging" );
  [self addScrollTimer];
}
@end

对UIScrollView的运用,以上代码中有详细注释,需注意2点:

1.注意设置contentSize属性。其中contentSize表示scroll内容尺寸大小 。

2.注意设置代理UIScrollViewDelegate,才可调用其中的方法 。

对于定时器NSTimer的运用需注意 。

1.在线程的loop中添加定时器 。

2.注意使用完成回收NSTimer 。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://blog.csdn.net/violetIC/article/details/43451543 。

最后此篇关于iOS实现图片自动切换效果的文章就讲到这里了,如果你想了解更多关于iOS实现图片自动切换效果的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com