如何管理不同部分中的不同行?没有固定的行数和节数取决于其他类中的另一个表视图。假设如果xxx节标题包含5行,则另一个节标题包含4行。节标题是其他类在表视图中的科目标题

最佳答案

它的确很简单,在tableView下面使用委托-

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
  // return your another table view's array count here, on which no of sections depends.
}


// Customize the number of rows in the table view.
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
   // use like this
  int noOfRows = 0;

  if(section == 0)
  {
     noOfRows = x;
  }
  else if(section ==1)
  {
     noOfRows = y;
  }
  .
  .
  .
  else
 {
    noOfRows = z;
 }
 return noOfRows;
}

x,y,z是NSInteger

关于iphone - Tableview中没有行的节数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10240420/

10-10 03:58