//滾動(dòng)條不顯示
self.tableview.showsVerticalScrollIndicator = NO;
//tableview添加陰影
_tableview.layer.shadowOffset = CGSizeMake(0, 0);
_tableview.layer.shadowColor = [UIColor colorWithHexString:@"#7B7B7B"].CGColor;
_tableview.layer.shadowOpacity = 0.4;
_tableview.separatorColor = [UIColor colorWithWhite:0.3 alpha:0.2];
_tableview.clipsToBounds = NO;
// 選中后不讓cell保持選中狀態(tài)
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// 選中后不讓cell保持選中狀態(tài)
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}