我正在使用 UITableView 来显示数据。我在每个单元格内放置了 1 个 UILabel。我想在滚动时隐藏这些 UILabel。我试过这个,但什么也没发生。
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
homeButton.userInteractionEnabled = NO;
HomeCell *cell = [[HomeCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.timeLeft.hidden = YES;
}
谢谢。