Set the Click Event of the delete button on the left of the uitableview background Transparency/listening Cell

Source: Internet
Author: User
    _tableView = [[UITableView alloc] init];    _tableView.delegate   = self;    _tableView.dataSource = self;
  _tableView.frame = CGRectMake(kZero, 66, kScreenW, kScreenH - 66 - 70);
// Set the list to transparent background. uiimage * image = [musicmanager createimagewithcolor: [uicolor clearcolor]; _ tableview. backgroundview = [[uiimageview alloc] initwithimage: Image]; _ tableview. backgroundcolor = [uicolor clearcolor];
# Pragma mark proxy method for setting uitableview background-(void) tableview :( uitableview *) tableview willdisplaycell :( uitableviewcell *) cell forrowatindexpath :( nsindexpath *) indexpath {[Cell setbackgroundcolor: [uicolor clearcolor];}

 

# Trigger when Pragma mark clicks the delete button on the left of the cell-(nsstring *) tableview :( uitableview *) tableview titlefordeleteconfirmationbuttonforrowatindexpath :( nsindexpath *) indexpath {// obtain the currently deleted cell uitableviewcell * cell = [tableview cellforrowatindexpath: indexpath]; // obtain all the child controls of the cell nsarray * labelarray = cell. contentview. subviews; For (uiimageview * view in labelarray) {If (view. tag = 3) {// the picture to the right cgrect temp = view. frame; temp. origin. X = 255; view. frame = temp;} return @ "delete ";}

 

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.