我在数组中有 8 个图像,并且UIImageView
一次显示数组中的一个图像。我也有UIPanGestureRecognizer
,UIImageView
所以当用户在图像上横向移动手指时,它会改变(有点像图像顶部的不可见滚动条)。我正在使用平移手势的平移值来更改图像。这一切都有效,但不是我想要的方式。图像变化太快,只需短手指平移即可滚动图像。有没有办法需要更长的平移来更改图像?或者任何其他方法可以让用户“更顺畅”?
。H
@interface FirstViewController : UIViewController
@property (nonatomic, retain) IBOutlet UIImageView *imageView;
- (IBAction)pan:(UIGestureRecognizer *)panGesture;
.m
@interface FirstViewController () {
NSArray * imageArray;
int _currentIndex;
}
@end
@implementation FirstViewController
- (IBAction)pan:(UIPanGestureRecognizer *)panGesture {
// NSLog(@"panned");
CGPoint translation = [panGesture translationInView:self.view];
[self.panLabel setText: NSStringFromCGPoint(translation)];
NSLog(@"%@ translation", NSStringFromCGPoint(translation));
if (translation.x<-1) {
_currentIndex=(_currentIndex<=0)?0:_currentIndex-1;
UIImage *img = [UIImage imageNamed:[imageArray objectAtIndex:_currentIndex]];
[self.imageView setImage:img];
}
else if(translation.x>1){
_currentIndex=(_currentIndex>=7)?7:_currentIndex+1;
UIImage *img = [UIImage imageNamed:[imageArray objectAtIndex:_currentIndex]];
[self.imageView setImage:img];
}
[panGesture setTranslation:CGPointZero inView:self.view];
}
- (void)viewDidLoad {
[super viewDidLoad];
imageArray = [[NSArray alloc]
initWithObjects:@"image1.jpg", @"image2.jpg", @"image3.jpg", @"image4.jpg", @"image5.jpg", @"image6.jpg", @"image7.jpg", @"image8.jpg", nil];
}