IOS UITableView removes the highlighted state when a cell is selected. iosuitableview

Source: Internet
Author: User

IOS UITableView removes the highlighted state when a cell is selected. iosuitableview

Master haomeng is devoted to his contribution and respects the author's Labor achievements. Do not repost them.

If the article is helpful to you, you are welcome to donate to the author, support haomeng master, the amount of donation is free, focusing on your mind ^_^

I want to donate: Click to donate

Cocos2d-X source code download: point I send


When processing a UITableView table, we hope that the user can interact with the touch unit format,

However, we hope that the selected status of these cells will disappear after interaction.

Cocoa Touch provides two methods to prevent persistent selection on the back of cells.

1. cell. selectionStyle = UITableViewCellSelectionStyleNone;

The disadvantage of this method is that although cell can be selected by users, it will not be highlighted.


2. The second method allows the cell to be highlighted, but after the interaction is complete, the highlighted display is removed.

This requires that the table be notified to cancel the cell selection status.

The Code is as follows:

-(Void) unselectCell :( id) sender {
[Self. tableView deselectRowAtIndexPath: [self. tableView indexPathForSelectedRow] animated: YES];
}
-(Void) tableView :( UITableView *) tableView didSelectRowAtIndexPath :( NSIndexPath *) indexPath {
// Redirect and other operations
[Self defined mselector: @ selector (unselectCell :) withObject: nil afterDelay: 0.5];
}

Or directly call

[Self. tableView deselectRowAtIndexPath: indexPath animated: NO];


Master haomeng is devoted to his contribution and respects the author's Labor achievements. Do not repost them.

If the article is helpful to you, you are welcome to donate to the author, support haomeng master, the amount of donation is free, focusing on your mind ^_^

I want to donate: Click to donate

Cocos2d-X source code download: point I send

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.