UITableView を使用してデータを表示しています。各セル内に 1 つの UILabel を配置します。スクロール時にこれらの UILabel を非表示にしたい。これを試しましたが、何も起こりませんでした。
-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
homeButton.userInteractionEnabled = NO;
HomeCell *cell = [[HomeCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.timeLeft.hidden = YES;
}
ありがとう。