没有得到图像的索引值

时间:2012-10-26 07:42:45

标签: iphone tableview

enter image description here我在来自webservice的七个UITableView部分中有七个图像数组。数组图像数可能是1或2或3,但最大数量是6.在每个部分我有2个每行有3个数组图像的行。 我将三个图像视图命名为LeftImageview,middleImageview和rightImgaeview。

我正在将图像发送到Looksfullimage viewcontroller。但是在使用didSelectRowAtIndexPath:委托方法时,我正在选择部分,但没有获得image.can的索引值。任何人都建议如何获取图像的索引值相对于部分。

我还尝试获取图像的标记值并使用leftImagepressed动作在三个图像上应用按钮。我试图通过将类型为int的imagetagvalue保持为cellforRowAtIndexPath:委托方法中的某些不同来查找tableview的部分但我不是正确获取部分。我在看起来完整的图像视图控制器的图像视图命名照片图像视图。我需要的是当我点击我的视图的一部分中的任何图像,特定的图像应该显示在外观全图像视图控制器的照片图像视图。我是放置我的桌面视图的screeshot。 任何人都可以建议......

提前致谢。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *MyIdentifier= @"MyIdentifier";

    LooksCustomCell* cell= (LooksCustomCell *)[myTableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if(cell==nil)
    {
        [[NSBundle mainBundle] loadNibNamed:@"LooksCustomCell" owner:self options:nil];
        cell=self.looksCustomCell;
    }
    cell.selectionStyle=UITableViewCellSelectionStyleNone;
    if(indexPath.section==0)
    {
        self.imageTagValue=1;

        NSLog(@"the tag value at section 0 is:%d",self.imageTagValue);
        if ([self.looksTodayDataArray count]>0)
        {
            if ([self.looksTodayDataArray count]>indexPath.row*3)
            {
                LooksObject *looksObjectRef1 = [self.looksTodayDataArray objectAtIndex:indexPath.row*3];

                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.leftImageButton.tag=indexPath.row*3;


            }
                       //[cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage]];
            //  [cell.leftImageView setContentMode:UIViewContentModeScaleAspectFit];

            if ([self.looksTodayDataArray count]>(indexPath.row*3)+1)
            {
                LooksObject *looksObjectRef2 = [self.looksTodayDataArray objectAtIndex:(indexPath.row*3)+1];

                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.middleImageButton.tag=(indexPath.row*3)+1;

            }
            // [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            //  [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.looksTodayDataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.looksTodayDataArray objectAtIndex:(indexPath.row*3)+2];

                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }
            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            //   [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];



        }
    }
    if(indexPath.section==1)
    {
        self.imageTagValue=2;
        if ([self.looksYesterdayDataArray count]>0)
        {
            if ([self.looksYesterdayDataArray count]>indexPath.row*3)
            {
                LooksObject *looksObjectRef1 = [self.looksYesterdayDataArray objectAtIndex:indexPath.row*3];
                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.leftImageButton.tag=indexPath.row*3;

            }
            //[cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage]];
            // [cell.leftImageView setContentMode:UIViewContentModeScaleAspectFit];

            if ([self.looksYesterdayDataArray count]>(indexPath.row*3)+1)
            {
                LooksObject *looksObjectRef2 = [self.looksYesterdayDataArray objectAtIndex:(indexPath.row*3)+1];

                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.middleImageButton.tag=(indexPath.row*3)+1;
            }
            //[cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            //  [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.looksYesterdayDataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.looksYesterdayDataArray objectAtIndex:(indexPath.row*3)+2];
                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }
            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            //  [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];


        }

    }
    if(indexPath.section==2)
    {
        self.imageTagValue=3;
        if ([self.day5DataArray count]>0)
        {
            if ([self.day5DataArray count]>indexPath.row*3)
            {
                LooksObject *looksObjectRef1 = [self.day5DataArray objectAtIndex:indexPath.row*3];
                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.leftImageButton.tag=indexPath.row*3;

            }
            //[cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage]];
            //  [cell.leftImageView setContentMode:UIViewContentModeScaleAspectFit];

            if ([self.day5DataArray count]>(indexPath.row*3)+1)
            {
                LooksObject *looksObjectRef2 = [self.day5DataArray objectAtIndex:(indexPath.row*3)+1];

                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.middleImageButton.tag=(indexPath.row*3)+1;
            }
            //[cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            // [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.day5DataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.day5DataArray objectAtIndex:(indexPath.row*3)+2];

                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }


            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            // [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];



        }
    }
    if(indexPath.section==3)
    {
        self.imageTagValue=4;
        if ([self.day4DataArray count]>0)
        {
            if ([self.day4DataArray count]>indexPath.row*3)
            {
                LooksObject *looksObjectRef1 = [self.day4DataArray objectAtIndex:indexPath.row*3];

                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.leftImageButton.tag=indexPath.row*3;

            }
            // [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage]];
            // [cell.leftImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.day4DataArray count]>(indexPath.row*3)+1)
            {

                LooksObject *looksObjectRef2 = [self.day4DataArray objectAtIndex:(indexPath.row*3)+1];

                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.middleImageButton.tag=(indexPath.row*3)+1;
            }
            //[cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            // [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.day4DataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.day4DataArray objectAtIndex:(indexPath.row*3)+2];

                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }
            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            // [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];



        }
    }
    if(indexPath.section==4)
    {
       self.imageTagValue=5;
        if ([self.day3DataArray count]>0)
        {
            //[cell.image1 setImageWithURL:[NSURL URLWithString:tempBud.bigImageUrl] placeholderImage:[UIImage imageNamed:@"IBudDummyPic.png"]];
            if ([self.day3DataArray count]>indexPath.row*3)
            {

                LooksObject *looksObjectRef1 = [self.day3DataArray objectAtIndex:indexPath.row*3];


                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.leftImageButton.tag=indexPath.row*3;

                self.imageTagValue=5;

            }
            if ([self.day3DataArray count]>(indexPath.row*3)+1)
            {

                                LooksObject *looksObjectRef2 = [self.day3DataArray objectAtIndex:(indexPath.row*3)+1];
                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.middleImageButton.tag=(indexPath.row*3)+1;
            }
            //[cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            //  [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.day3DataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.day3DataArray objectAtIndex:(indexPath.row*3)+2];
                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }
            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            // [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];



        }
    }
    if(indexPath.section==5)
    {
        self.imageTagValue=6;
        if ([self.day2DataArray count]>0)
        {
            if ([self.day2DataArray count]>indexPath.row*3)
            {
                LooksObject *looksObjectRef1 = [self.day2DataArray objectAtIndex:indexPath.row*3];

                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.leftImageButton.tag=indexPath.row*3;

            }
            //[cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage]];
            //  [cell.leftImageView setContentMode:UIViewContentModeScaleAspectFit];

            if ([self.day2DataArray count]>(indexPath.row*3)+1)
            {
                LooksObject *looksObjectRef2 = [self.day2DataArray objectAtIndex:(indexPath.row*3)+1];

                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.middleImageButton.tag=(indexPath.row*3)+1;
            }
            //[cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            //   [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.day2DataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.day2DataArray objectAtIndex:(indexPath.row*3)+2];

                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }
            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            //   [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];



        }
    }
    if(indexPath.section==6)
    {
        self.imageTagValue=7;
        if ([self.day1DataArray count]>0)
        {
            if ([self.day1DataArray count]>indexPath.row*3)
            {
                LooksObject *looksObjectRef1 = [self.day1DataArray objectAtIndex:indexPath.row*3];

                [cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];
                cell.leftImageButton.tag=indexPath.row*3;

            }
            //[cell.leftImageView setImageWithURL:[NSURL URLWithString:looksObjectRef1.looksThumbImage]];
            //   [cell.leftImageView setContentMode:UIViewContentModeScaleAspectFit];

            if ([self.day1DataArray count]>(indexPath.row*3)+1)
            {
                LooksObject *looksObjectRef2 = [self.day1DataArray objectAtIndex:(indexPath.row*3)+1];

                [cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.middleImageButton.tag=(indexPath.row*3)+1;
            }
            //[cell.middleImageView setImageWithURL:[NSURL URLWithString:looksObjectRef2.looksThumbImage]];
            // [cell.middleImageView setContentMode:UIViewContentModeScaleAspectFit];
            if ([self.day1DataArray count]>(indexPath.row*3)+2)
            {
                LooksObject *looksObjectRef3 = [self.day1DataArray objectAtIndex:(indexPath.row*3)+2];

                [cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage] placeholderImage:[UIImage imageNamed:@"FashTag_no_image.png"]];

                cell.rightImageButton.tag=(indexPath.row*3)+2;

            }
            //[cell.rightImageView setImageWithURL:[NSURL URLWithString:looksObjectRef3.looksThumbImage]];
            //  [cell.rightImageView setContentMode:UIViewContentModeScaleAspectFit];



        }
    }
    return cell;    
}
-(void)tableView:(UITableView *) tableView didSelectRowAtIndexPath: (NSIndexPath *) indexPath
{

    LooksFullImageViewController *looksFullImageVC=[[LooksFullImageViewController alloc]initWithNibName:@"LooksFullImageViewController" bundle:nil];

    if(indexPath.section==0)
    {
        looksFullImageVC.array=self.looksTodayDataArray;
    }
    else if(indexPath.section==1)
    {
        looksFullImageVC.array=self.looksYesterdayDataArray;
    }
    else if(indexPath.section==2)
    {    

        looksFullImageVC.array=self.day5DataArray;
            }
    else if(indexPath.section==3)
    {
        looksFullImageVC.array=self.day4DataArray;
            }
    else if(indexPath.section==4)
    {
        looksFullImageVC.array=self.day3DataArray;

    }
    else if(indexPath.section==5)
    {
        looksFullImageVC.array=self.day2DataArray;

    }
    else if(indexPath.section==6)    
    {
    looksFullImageVC.array=self.day1DataArray;

    }
     [self.navigationController pushViewController:looksFullImageVC animated:YES];


}
-(IBAction)leftImageButtonPressed:(id)sender
{
    LooksFullImageViewController *looksFullImageVC=[[LooksFullImageViewController alloc]initWithNibName:@"LooksFullImageViewController" bundle:nil];
    if(self.imageTagValue==1)
    {
    looksFullImageVC.array=self.looksTodayDataArray;
    looksFullImageVC.tagValue=[sender tag];

    }
    if(self.imageTagValue==2)
    {
        looksFullImageVC.array=self.looksYesterdayDataArray;
        looksFullImageVC.tagValue=[sender tag];
    }
    if(self.imageTagValue==3)
    {
        looksFullImageVC.array=self.day5DataArray;
        looksFullImageVC.tagValue=[sender tag];
    }
    if(self.imageTagValue==4)
    {
        looksFullImageVC.array=self.day4DataArray;
        looksFullImageVC.tagValue=[sender tag];
    }
    if(self.imageTagValue==5)
    {
        looksFullImageVC.array=self.day3DataArray;
        looksFullImageVC.tagValue=[sender tag];
    }
    if(self.imageTagValue==6)
    {
        looksFullImageVC.array=self.day2DataArray;
        looksFullImageVC.tagValue=[sender tag];
    }
    if(self.imageTagValue==7)
    {
        looksFullImageVC.array=self.day1DataArray;
        looksFullImageVC.tagValue=[sender tag];
    }
    //looksFullImageVC.tagValue=indexPath.row;
    //fullimage.scrollValue=2;
    [self.navigationController pushViewController:looksFullImageVC animated:YES];
}

2 个答案:

答案 0 :(得分:0)

你无法获得图像的索引路径,didSelectRowAtIndexPath会给你的是所选行的索引路径,其中包含3个图像。

您需要做的是扩展imageView类并在图像上实现触摸以找出单击的图像。

答案 1 :(得分:0)

我将表格视图更改为滚动视图。并将标记应用于图像的每个按钮。现在工作正常......