2012年6月10日日曜日

UITableViewCell タップ時のハイライトを無効にする

テーブルのセルをタップした際にハイライトするのを無効に設定した際の覚書きです。

方法は以下のようになります。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    :
    
    //この一行追加
    cell.selectionStyle = UITableViewCellSelectionStyleNone;

    :
}

参考記事

UITableViewCellの選択時のハイライトを無効にする - Life is Really Short, Have Your Life!!

0 件のコメント:

コメントを投稿