iOS cell上是一个collectionView的时候
作者:
夏天爱西瓜汁 | 来源:发表于
2017-11-28 11:22 被阅读8次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的时候
本文链接:https://www.haomeiwen.com/subject/fubdbxtx.html
网友评论