回答:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
でスウィフト4更新
cell.selectionStyle = UITableViewCell.SelectionStyle.none
または
cell.selectionStyle = .none
Objective-C:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
または
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
スウィフト4:
self.selectionStyle = UITableViewCellSelectionStyle.none;
スウィフト3:
cell.selectionStyle = .none
スウィフト2:
cell.selectionStyle = UITableViewCellSelectionStyle.None
Storyboard / Xibだけを使用して変更する場合は、「選択スタイル効果」を削除するセルを選択し、「なし」として定義します。魔法のようにも機能します:D