我创建了一个带有两个按钮和一个uiimageview的简单应用程序。 一个按钮从照片库中获取照片并将其放在uiimageview上。 当用户添加另一张照片时,应保存旧照片,然后用户可以在这两张照片之间滑动。
另一个按钮拍照并将其放在uiimageview上。
所以现在我真的很担心在照片之间滑动。我读到uiimageview只能包含一个图像。另外,我读到我需要将uiScrollView添加到UiImageView,但我不知道它们是如何协同工作的。
我应该删除我的UIImageView,然后创建ScrollView而不是它吗?
这是我的代码
- (void)viewDidLoad {
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
- (IBAction)pickPhoto:(id)sender {
picker1 = [[UIImagePickerController alloc]init];
picker1.delegate = self;
[picker1 setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
[self presentViewController:picker1 animated:YES completion:NULL];
}
- (IBAction)takePhoto:(id)sender {
picker2 = [[UIImagePickerController alloc]init];
picker2.delegate = self;
if([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypeCamera]){
}
else{
NSLog(@"not avaialbe");
}
[self presentViewController:picker2 animated:YES completion:NULL];
}
- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
image = [info objectForKey:UIImagePickerControllerOriginalImage];
[self.imageView setImage:image];
[self dismissViewControllerAnimated:YES completion:NULL];
}
- (void) imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
[self dismissViewControllerAnimated:YES completion:NULL];
}
更新
所以我添加了一个方法,允许用户向左或向右滑动,他可以看到不同的图片,但是,我不得不将我的图像硬编码到代码中。但我想从照片库中选择图像,然后将这些图像保存在数组中,然后如果用户添加更多图片,他可以选择在其旧图像中滑动。
这是我用于扫描图像的代码
- (IBAction)Swipe:(id)sender {
NSArray *images = [[NSArray alloc]initWithObjects:@"ayat.png", @"qwe.png",@"4444", @"15", nil];
UISwipeGestureRecognizerDirection direction = [(UISwipeGestureRecognizer *) sender direction];
switch(direction)
{
case UISwipeGestureRecognizerDirectionLeft:
imageIndex++;
break;
case UISwipeGestureRecognizerDirectionRight:
imageIndex--;
break;
default:
break;
}
imageIndex = (imageIndex <0)?([images count] -1 ):
imageIndex % [images count];
self.imageView.image = [UIImage imageNamed:[images objectAtIndex:imageIndex]];
}
但是我在这里添加了图片到我的项目中。
答案 0 :(得分:1)
UIImageView只能显示一个图像。
有多种方法可以解决这个问题。一种是使用UIPageViewController。这将使您能够在内容页面之间设置基于侧滑动的分页。 Apple提供了一个名为PhotoScroller的示例应用程序(它曾经与Xcode帮助系统相关联。使用Xcode 6,apple似乎已经删除了所有示例代码。您必须在网上搜索示例应用程序。应用程序还包括平铺渲染,这可能对您的应用程序有点过分,但它确实显示了如何设置页面视图控制器。
您还可以使用UICollectionView,或创建自己的自定义视图来管理一组视图。
实际上现在我认为它是一个为分页设置的UICollectionView可能是你最好的选择。