首页 > 代码库 > TabviewCell的多分区实现

TabviewCell的多分区实现

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

//返回两个分区

  return 2;

}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{

    NSInteger count;

    if (section==0) {

        count=1;    //第一个分区一个cell

    }

    else if (section==1)

    {

        count=3;   //第二个分区三个cell

    }

    

    return count;

    

}

TabviewCell的多分区实现