解决自定义UITableViewCell在浏览中出现数据行重复的问题
我在写一个App的时候自定义了一个UITableViewCell,但是这个UITableView在运行的时候出现了每6行数据就循环重复显示的问题,这个问题跟android中的问题相似。。。
static NSString *CellWithIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellWithIdentifier]; if (cell == nil) { //这里只是创建ui界面 UILabel* title = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 0, 0)]; [title setTag:1]; ... } //完了再这里给需要复制的项赋值就可以了,跟android里出现的问题是一样一样的 UILabel* title = [cell.contentView viewWithTag:1]; [title setText:[NSString stringWithFormat:@"高薪诚聘客服人员...%d",indexPath.row]];
开始以为ios没这问题,后来做出来没想到ios也有这问题....一直以为只有android里面有这鸟问题....
相关推荐
Terminator0 2020-02-19
WintonTalks 2012-07-16
莫封洛 2019-07-26
我的iOS王者之路 2019-06-28
MoMo 2017-01-10
Rephontil 2015-08-10
NineYao 2015-01-30
liuwentao 2013-09-13
wsmrcool 2013-01-17
SoccerZZM 2012-10-15
NineYao 2012-09-05
NineYao 2012-07-16
heqiang0 2020-06-25
wenxuegeng 2020-06-10
tenvainvi 2020-06-09