답변:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
에 스위프트 4 업데이트
cell.selectionStyle = UITableViewCell.SelectionStyle.none
또는
cell.selectionStyle = .none
목표 -C :
cell.selectionStyle = UITableViewCellSelectionStyleNone;
또는
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
스위프트 4 :
self.selectionStyle = UITableViewCellSelectionStyle.none;
스위프트 3 :
cell.selectionStyle = .none
스위프트 2 :
cell.selectionStyle = UITableViewCellSelectionStyle.None
Storyboard / Xib를 사용하여 변경하려면 "선택 스타일 효과"를 제거 할 셀을 선택하고 "없음"으로 정의하면됩니다. 마법처럼 작동합니다 : D