我有一个表格视图,我在其中加载了我的自定义单元格。一旦加载表格视图,我想在没有任何用户交互的情况下以固定的时间间隔突出显示每个单元格。请帮助我。
问问题
255 次
3 回答
1
使用 NSTimer 在您想要的特定时间间隔触发选择操作。
编辑 -
NSTimer *timer=[NSTimer scheduledTimerWithTimeInterval:1.0f target:self selector:@selector(highlightMyCell) userInfo:nil repeats:YES]
现在在 highlightMyCell 方法 -
-(void)highlightMyCell {
// Provide implementation to highlight the cell.
}
于 2012-05-08T05:27:26.787 回答
1
使用 NSTimer 而不是调用在发送选择器selectRowAtIndexPath:animated:scrollPosition:
和deselectRowAtIndexPath:animated:
每次触发计时器时翻转的方法。
于 2012-05-08T05:27:33.470 回答
0
使用这行代码并尝试一下。//在viewdidload方法中添加这个
NSTimer *timer=[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(highlighted) userInfo:nil repeats:YES];
-(void)highlighted
{
[customcellobject setHighlighted:YES animated:YES];
}
于 2012-05-08T05:27:26.860 回答