StoryBoardからハイライトさせない場合は、
テーブルのセルを選択して、Attribute InspectorのSelectionをNoneにします。
コードでやる場合
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
メソッドで、生成されたセルに対して、
cell.selectionStyle = UITableViewCellSelectionStyleNone;
を入れてやる。

0 件のコメント:
コメントを投稿