UItableView使用汇总
2015-10-16 本文已影响60人
面试小集
1. cell选中后的反显颜色即刻消失
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//选中后的反显颜色即刻消失
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//选中后的反显颜色即刻消失
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}