Life is Really Short, Have Your Life!!

ござ先輩の主に技術的なメモ

UITableViewCellの選択時のハイライトを無効にする

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
	static NSString *CellIdentifier = @"Cell";
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
	}
        //コレ
	cell.selectionStyle = UITableViewCellSelectionStyleNone;

	return cell;
}

cell.selectionStyle = UITableViewCellSelectionStyleNone;

いつも忘れるのでメモ。