iOS cell上是一个collectionView的时候

2016.8.29

‍cell上是一个collectionView的时候,根据对cell的属性赋值,需要改变collectionView的数据展示,如下:cell的一个属性,是否提示,如果要提示,collectionView的某个cell要显示一个提示的图片,如果不提示,则图片隐藏。在cellForRow里刷新collectionView没有作用,这个时候把刷新方法写在cell的那个属性的setter方法里,就会有作用cellForRowAtIndexPath:AboutAllKindsCell * cell = [tableViewdequeueReusableCellWithIdentifier:@"aboutAllKindsCell"];if (cell == nil) {    cell = [[NSBundle mainBundle]loadNibNamed:@"AboutAllKindsCell" owner:niloptions:nil].lastObject;    cell.delegate = self;}cell.needRepayRemind = _aboutMeViewModel.needRepayRemind;#import "AboutAllKindsCell.h"@implementation AboutAllKindsCell- (void)setNeedRepayRemind:(BOOL)needRepayRemind {    _needRepayRemind = needRepayRemind;    [self.Collection reloadData];}

你可能感兴趣的:(iOS cell上是一个collectionView的时候)