我该如何解决这个嵌套的tableview场景

时间:2016-10-06 17:11:53

标签: ios uitableview

我有一个相当简单的场景:

我期待的数据结构基本上看起来像这样(实际布局更复杂):

  • 一些头衔
    • n子文字
    • n子文字
    • n子文字
  • 一些头衔
    • n子文字
    • n子文字
    • n子文字
    • n子文字
    • n子文字
  • 一些头衔
    • n子文字
  • 一些头衔
    • n子文字
    • n子文字
    • n子文字
    • n子文字
    • n子文字

在我的第一次尝试中,我使用编程约束来渲染所有这些约束,(正如您可能猜到的那样)工作,但表现非常糟糕。

当然,我继续研究了显示动态嵌套内容的方法。不幸的是,我无法使用细胞回收来找到一种很好的通用方法。

现在我想出了一个看似非常有创意的想法,但是超级黑客。

我要做的是,利用细胞回收:

我将创建一个通用的单元类来传递TableView.RegisterClassForCellReuse(typeof(MySpecialCell<ItemType, RandomTypeForUniqueness>), "MySpecialCell"+item.Count.ToString());

根据孩子的数量设置我的细胞。

我的问题:

解决这个问题的方法有点不太好吗? (因为这确实很难看。)

这最终应该是这样的:

this is what it is supposed to be layouted like

PS:我真的希望RegisterClassForCellReuse接受工厂:(

1 个答案:

答案 0 :(得分:0)

请按照以下步骤操作:

在.h中,声明

NSMutableArray  *arrayForBool;
NSMutableArray *arrPastOrder;

在.m,

- (void)viewDidLoad {

arrPastOrder=[[NSMutableArray alloc] init];

int range=1+arc4random()%10;
for(int i=0;i<range;i++)
{
    NSMutableArray *arrinside=[[NSMutableArray alloc] init];
    int range2=3+arc4random()%5;

    for(int j=0;j<range2;j++)
    {
        if(j==0)
            [arrinside addObject:[NSString stringWithFormat:@"Some Header %i",i]];
        else
            [arrinside addObject:[NSString stringWithFormat:@"Subindex %i",j]];

    }

    [arrPastOrder addObject:arrinside];

}

arrayForBool=[[NSMutableArray alloc]init];

for (int i=0; i<[arrPastOrder count]; i++)
{
    [arrayForBool addObject:[NSNumber numberWithBool:YES]];
}
  }



#pragma mark -
#pragma mark TableView DataSource and Delegate Methods

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

   if ([[arrayForBool objectAtIndex:section] boolValue])
    {
    return  [[arrPastOrder objectAtIndex:section] count]-1;
    }
   else
    return 0;

   }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
   {


    static NSString *cellid=@"hello";

    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellid];

   if (cell==nil)
   {
        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellid];
      }


BOOL manyCells  = [[arrayForBool objectAtIndex:indexPath.section] boolValue];

/********** If the section supposed to be closed *******************/
if(!manyCells)
{
    cell.backgroundColor=[UIColor clearColor];

    NSLog(@"cellForRowAtIndexPath---if");

    cell.textLabel.text=@"";
}
/********** If the section supposed to be Opened *******************/
else
{

    //cell.textLabel.text=[NSString stringWithFormat:@"%@ %ld",[sectionTitleArray objectAtIndex:indexPath.section],indexPath.row+1];


    //  ic_keyboard_arrow_up_48pt_2x  ic_keyboard_arrow_down_48pt_2x.png

    cell.textLabel.text=[NSString stringWithFormat:@"%@",[[arrPastOrder objectAtIndex:indexPath.section] objectAtIndex:indexPath.row+1]];


}

cell.textLabel.textColor=[UIColor blackColor];

return cell;

}


 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 {
    return [arrPastOrder count];

  }

     - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
   {


    NSLog(@"%li--%li",(long)indexPath.section, (long)indexPath.row);

  }


    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
      {
       if ([[arrayForBool objectAtIndex:indexPath.section] boolValue]) {
         return 40;
      }
        return 0;

       }

     - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
     {
          return 100;
     }

   #pragma mark - Creating View for TableView Section

    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
     {

UIView *sectionView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 540,100)];
sectionView.backgroundColor=[UIColor whiteColor];
sectionView.tag=section;

UILabel *viewLabel=[[UILabel alloc]initWithFrame:CGRectMake(10, 30, 530, 40)];
viewLabel.backgroundColor=[UIColor whiteColor];
viewLabel.textColor=[UIColor blackColor];
viewLabel.font=[UIFont boldSystemFontOfSize:20];
viewLabel.text=[NSString stringWithFormat:@"%@",[[arrPastOrder objectAtIndex:section] objectAtIndex:0]];
[sectionView addSubview:viewLabel];



/********** Add UITapGestureRecognizer to SectionView   **************/

UITapGestureRecognizer  *headerTapped   = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(sectionHeaderTapped:)];
[sectionView addGestureRecognizer:headerTapped];

return  sectionView;


 }


 #pragma mark - Table header gesture tapped

 - (void)sectionHeaderTapped:(UITapGestureRecognizer *)gestureRecognizer{

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:gestureRecognizer.view.tag];    

   //Get which section is open, from here Set the value of arrafool. and expand collapse. Normally whole table is expanded. 


 }

跑吧。你会得到相同的结构。快乐的编码!!