Basic delegate2 methods of uitableview

Source: Internet
Author: User
// Number of rows in the partition-(nsinteger) tableview :( uitableview *) tableview numberofrowsinsection :( nsinteger) Section {return [self. listdata count];} // Add information for each row-(uitableviewcell *) tableview :( uitableview *) tableview cellforrowatindexpath :( nsindexpath *) indexpath {static nsstring * tag = @ "tag ";
// Myclass is a self-implemented uitableviewcell, which contains a label and a button.
Myclass * cell = (myclass *) [tableview dequeuereusablecellwithidentifier: Tag]; If (cell = nil) {[[nsbundle mainbundle] loadnibnamed: @ "empty" Owner: Self options: nil]; // cell = [[[myclass alloc] initwithframe: cgrectzero // reuseidentifier: Tag] autorelease]; cell = cellclass;} nsuinteger ROW = [indexpath row]; // cell. textlabel. TEXT = [listdata objectatindex: Row]; cardType * Ct = (cardType *) [self. listdata objectatindex: Row]; cell. infolabel. TEXT = CT. cardType; // when setting text for a button, the button status must be set at the same time; otherwise, the [cell. button settitle: CT. cardid forstate: uicontrolstatenormal]; return cell ;}

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.