- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[_mTabelView reloadData];
CategoryTableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];//这就是获取cell的语句
cell.backgroundColor = [UIColor whiteColor];
cell.title.textColor = NORMALCOLOR;
cell.headImage.image = [UIImage imageNamed:[NSString stringWithFormat:@"%@%d%@",@"sort_",indexPath.row - 1,@"_press"]];
}