Creation of TableView

Source: Internet
Author: User

Summarize the knowledge points of TableView
Creation of 1.tableView
//creation of TableView//1. InitializeUITableView *tableview =[[UITableView alloc] InitWithFrame:self.view.frame Style:uitableviewstyleplain]; //2. Set properties (row height, split line, header, footer)Tableview.rowheight = -; //uitableviewcellseparatorstylesingleline (default)Tableview.separatorstyle =Uitableviewcellseparatorstylesingleline; Tableview.separatorcolor=[Uicolor Redcolor]; Tableview.separatorinset= Uiedgeinsetsmake (0,0,0,0); Tableview.backgroundcolor=[Uicolor Graycolor]; UILabel*headerlabel = [[UILabel alloc] Initwithframe:cgrectmake (0,0,375, -)]; Headerlabel.text=@"iOS Apps leaderboard"; Headerlabel.textalignment=Nstextalignmentcenter; Tableview.tableheaderview= Headerlabel;//table header, you need to create a label and then assign the created label to the footer of the header[Headerlabel release]; //redundant split lines can be cleared through the footer//Tableview.tablefooterview = [[[UIView alloc] init] autorelease]; //set whether to allow multiple selectionsTableview.allowsmultipleselection =YES; //3. Add Parent View[Self.view Addsubview:tableview]; //4. Release[TableView release];

Creation of TableView

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.