如何在集合上调用方法查看所有单元格?

时间:2014-10-11 16:04:52

标签: ios iphone uicollectionview uicollectionviewcell uicollectionviewlayout

在集合视图单元格上的长按手势我想在所有集合视图单元格上做一些动画。 怎么实现呢? 一种方法是重新加载collectionview。我只是好奇有另一种方法可以实现吗?

1 个答案:

答案 0 :(得分:2)

你不能使用通知吗?

UICollectionViewCell初始化代码中:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(doFancyAnimation:) name:@"MyNotification" object:nil];

然后从您的手势识别器发布通知:

[[NSNotificationCenter defaultCenter] postNotificationName:@"MyNotification" object:self];