我正在使用iOS应用程序,我必须在集合视图中显示图像,方法是在每个图像上添加标签,与Facebook相同,当我们在Facebook中点击集合中的图像时,它会扩展其图像并显示带有标签的图像。不同的图像大小在大小上显示不同。我做的一样。一切都很好,但是当我添加小图像时,它会改变标签在单元格上的位置。这意味着大图像上会出现两个标签,一个标签正好在我想要的位置,第二个小图像标签。我正在使用此代码:
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
int i;
Cell *cell;
UILabel * lblName ;
UILabel * lblName1 ;
cell=[collectionView dequeueReusableCellWithReuseIdentifier:REUSEABLE_CELL_IDENTITY forIndexPath:indexPath];
@try
{
NSLog(@"index path is %ld",(long)indexPath.row);
if(rearr.count == 0)
{
cell.imageviews.image=NULL;
}
else
{
NSLog(@"count %lu",(unsigned long)rearr.count);
for (i=0;i<rearr.count; i++)
{
NSLog(@"count %lu",(unsigned long)rearr.count);
image = [UIImage imageWithContentsOfFile:rearr[i]];
NSLog(@"image.size.width1 : %f",image.size.width);
NSLog(@"image.size.height1 : %f",image.size.height);
if(image.size.width > image.size.height)
{
lblName = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 230.0, 300.0,80)];
lblName.text = @"Image";
lblName.textAlignment = NSTextAlignmentCenter;
[lblName setFont:[UIFont fontWithName:@"GothamRounded-Bold" size:10]];
[lblName setTextColor:[UIColor colorWithRed:137.0f/255.0 green:137.0f/255.0 blue:137.0f/255.0 alpha:1.0]];
[lblName setBackgroundColor:[UIColor whiteColor]];
[cell.contentView addSubview:lblName];
}
else
{
lblName1 = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 410.0, 300.0,80)];
lblName1.text = @"Image1";
lblName1.textAlignment = NSTextAlignmentCenter;
[lblName1 setFont:[UIFont fontWithName:@"GothamRounded-Bold" size:10]];
[lblName1 setTextColor:[UIColor colorWithRed:137.0f/255.0 green:137.0f/255.0 blue:137.0f/255.0 alpha:1.0]];
[lblName1 setBackgroundColor:[UIColor whiteColor]];
[cell.contentView addSubview:lblName1];
}
if(image != nil)
{
[itms addObject:image];
}
else
{
NSData *data = [[NSData alloc]initWithContentsOfFile:rearr[i]];
image=[UIImage imageWithData:data];
[itms addObject:image];
}
}
cell.imageviews.image=[itms objectAtIndex:indexPath.row];
cell.imageviews.layer.cornerRadius=5.0f;
cell.imageviews.clipsToBounds = YES;
}
return cell;
}
@catch (NSException *exception)
{
NSLog(@"image insertion in collecvcontroller : exception %@",exception);
return cell;
}
}
请帮帮我。我不知道自己做错了什么。
答案 0 :(得分:1)
当您使用dequeueReusableCellWithReuseIdentifier
时,为什么每次都添加UILabel
。做下面的事情,你会看到你的欲望输出..
if(image.size.width > image.size.height)
{
[[[cell contentView] viewWithTag:2] removeFromSuperView];
lblName = [[cell contentView] viewWithTag:1];
if(! lblName)
{
lblName = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 410.0, 300.0,80)];
[lblName setTag:1];
[[cell contentView] addSubview:lblName];
}
// Do other stuff here
}
else
{
[[[cell contentView] viewWithTag:1] removeFromSuperView];
lblName1 = [[cell contentView] viewWithTag:2];
if(! lblName1)
{
lblName1 = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 410.0, 300.0,80)];
[lblName1 setTag:2];
[[cell contentView] addSubview:lblName1];
}
// Do other stuff here
}