iOS UITableView self-swipe Delete effect

Source: Internet
Author: User


To tell the truth, UITableView cell comes with the sliding delete effect, before the iOS7 is ugly, but after the flat iOS, this sliding delete is very good-looking. And it's also very easy to implement.

The realization of this effect is mainly implemented in the UITableView protocol.

As follows:

Settings can be edited

-(BOOL) TableView: (UITableView *) TableView Caneditrowatindexpath: (Nsindexpath *) indexpath{    return YES;

Delete button click

-(void) TableView: (UITableView *) TableView Commiteditingstyle: (uitableviewcelleditingstyle) Editingstyle Forrowatindexpath: (Nsindexpath *) indexpath{    if (Editingstyle = = uitableviewcelleditingstyledelete) {        //todo    }}


here the default button to delete the English, want to change into Chinese, need to implement a method.

-(NSString *) TableView: (UITableView *) TableView Titlefordeleteconfirmationbuttonforrowatindexpath: (Nsindexpath *) Indexpath Ns_available_ios (3_0) {    return @ "delete";}


The effect is as follows:






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.