如何一次将多个图像传递给其他视图?

时间:2015-02-07 11:52:47

标签: ios uiview uiimageview uibutton

在我的应用程序中,我一次挑选五张图片,并以小视图显示,如果我点击该按钮,我有按钮,该视图中的5张图像应该转到下一个视图控制器。但是当我&#39 ; m点击该按钮只有第0个索引中的图像正在传递,剩下的图像没有通过。希望有人帮助我

这是我的代码。此代码用于从第一个视图传递到第二个视图,selectedImages是一个数组,其中所有选中的图像都保存

SecondViewController *secview=[[SecondViewController   alloc]initWithNibName:@"SecondViewController" bundle:nil];
if (secview.imgView.tag==0) {
secview.img=[self.chosenImages objectAtIndex:0];
}
else if (secview.imgView1.tag==1)
{
secview.img=[self.chosenImages objectAtIndex:1];

}
else if (secview.imgView1.tag==2)
{
secview.img=[self.chosenImages objectAtIndex:2];

}
else if (secview.imgView1.tag==3)
{
secview.img=[self.chosenImages objectAtIndex:3];

}
else if (secview.imgView1.tag==4)
{
secview.img=[self.chosenImages objectAtIndex:4];

}
NSLog(@"%@",secview.img);
[self presentViewController:secview animated:YES completion:nil];

在第二个视图中我的代码是:

    if (imgView.tag==0)
    {
        imgView.image=img;
    }
    else if (imgView1.tag==1)
    {
        imgView1.image=img;
    }
    else if (imgView2.tag==2)
    {
        imgView2.image=img;
    }
    else if (imgView3.tag==3)
    {
        imgView3.image=img;
    }
    else if (imgView4.tag==4)
    {
        imgView4.image=img;
    }

更新:在didFinishPickingMedia中我写了这段代码

images = [NSMutableArray arrayWithCapacity:[info count]];
for (NSDictionary *dict in info) {
if ([dict objectForKey:UIImagePickerControllerMediaType] ==   ALAssetTypePhoto){
if ([dict objectForKey:UIImagePickerControllerOriginalImage]){
image=[dict objectForKey:UIImagePickerControllerOriginalImage];
[images addObject:image];
UIImageView *imageview = [[UIImageView alloc] initWithImage:image];
[imageview setContentMode:UIViewContentModeScaleAspectFit];
}

}
else {
NSLog(@"UIImagePickerControllerReferenceURL = %@", dict);
}
}
self.chosenImages = images;
[AllImages setHidden:NO];
previousButtonTag=1000;
scrollView=[[UIScrollView alloc] initWithFrame:CGRectMake(0, 4,      self.AllImages.frame.size.width, 104)];
int x =0.5;
for (int i=0; i<5; i++) {
        button = [UIButton buttonWithType:UIButtonTypeCustom];
        button.frame=CGRectMake(x, 0, 100, 123);
        button.layer.borderWidth=0.5;
        button.titleLabel.font=[UIFont boldSystemFontOfSize:12];
        button.titleLabel.textAlignment = NSTextAlignmentCenter;
        button.titleLabel.lineBreakMode = NSLineBreakByWordWrapping;
        // button.layer.borderColor=[[UIColor lightGrayColor]CGColor];
        button.tag = i;
        [button setBackgroundImage:[self.chosenImages objectAtIndex:i] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(OverLayMethod:) forControlEvents:UIControlEventTouchUpInside];
        [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        [scrollView addSubview:button];
        x += button.frame.size.width;
        x=x+6.0;
    }
    scrollView.contentSize = CGSizeMake(x, scrollView.frame.size.height);
     scrollView.backgroundColor = [UIColor clearColor];
    [self.AllImages addSubview:scrollView];
}

2 个答案:

答案 0 :(得分:1)

我通过在第二个视图中声明另一个数组解决了我的问题。在第一个视图中,我们将拾取的图像保存在一个数组中。所以第一个视图数组对象=第二个视图数组,我在第二个视图中传递了该数组 我在第二个视图中的代码:

for (int i=0; i<[arr count]; i++) {
self.img=[arr objectAtIndex:i];      
if (i==0)
{
imgView.image=img;
}
else if (i==1)
{
imgView1.image=img;
}
else if (i==2)
{
imgView2.image=img;
}
else if (i==3)
{
imgView3.image=img;
}
else if (i==4)
{
imgView4.image=img;
}
}    


}

通过这个我得到正确的输出

答案 1 :(得分:0)

我不知道我得到了你的问题,但我的理解是你想把5张图片发送到另一个视图。如果是这样,请定义一个新的NSArray属性,例如&#39; images&#39;在你的SecondViewController中,将它添加到从第一个视图到第二个

的位置
SecondViewController *secondVC = [SecondViewController new];
[secondVC setImages: self.chosenImages];

您的代码的问题在于您使用if / else if block语句,如果/ if中的其中一个条件如果评估为true,则只进入其中一个块。此外,-objectAtIndex:仅返回一个项目。

[self.chosenImages objectAtIndex:0];

另外,我确定secview.img表示您的SecondViewController内有UIImage属性。