在iOS中的CollectionView单元格上添加缩放效果

时间:2014-10-15 05:25:09

标签: ios uicollectionview

我想像这个链接Avtar Animation library from GitHub

一样设置动画 选择图像时,我的自定义集合视图单元格上的

然后放大当前视图。如果有可能那么给我解决方案。我也像我一样编码

-(void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
{
UIImageView *imageview=[[UIImageView alloc]init];
NSString *img2=[self.imagesa objectAtIndex:indexPath.row];
imageview.image=[UIImage imageNamed:img2];
[SJAvatarBrowser showImage:imageview];
}

但它没有工作。当我在我的集​​合视图自定义单元格上放置一个手势然后' NSInternalInconsistencyException',原因:'无效的nib注册标识符(CellIdentifier) - nib必须包含确切的一个顶级对象,必须是UICollectionReusableView实例'

0 个答案:

没有答案