UITableView selected background color 테이블뷰가 선택 되었을 때 백그라운드 색을 지정해 주는 코드입니다.일반적으로 퍼런색과 회색을 지정해 줄 수 있는데 다양한 색상으로 변경을 할 수 있습니다. static NSString *CellIdentifier = @"VODCusCell"; VODCusCell *cell = (VODCusCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { NSArray *arr = [[NSBundle mainBundle] loadNibNamed:@"VODCusCell" owner:self options:nil]; cell = [arr objectAt..