用CollectionView画了一个课程表界面,但是在上下滑动以后前面的第几节课的标号会出现“残影”。
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
UILabel *classNum = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 25, CellHieght)];
if (indexPath.row == 0) {
cell.backgroundColor = [UIColor whiteColor];
classNum.text = [NSString stringWithFormat:@"%ld", indexPath.section + 1];
classNum.font = [UIFont systemFontOfSize:12];
classNum.textAlignment = NSTextAlignmentCenter;
[cell addSubview:classNum];
}
else{
cell.backgroundColor = [UIColor lightGrayColor];
}
return cell;
还请各位指教,个人感觉应该是没有reuse的问题
GitHub地址在这: https://github.com/DavidHu0921/ClassBoxForCityDLUT
问题代码在Controller/ClassCalendar/test里面
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.