方法は以下のようになります。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
:
//この一行追加
cell.selectionStyle = UITableViewCellSelectionStyleNone;
:
}
0 件のコメント:
コメントを投稿