0

在我的应用程序中,我UITableView固定了第一个单元格和最后三个单元格的内容。但是在这些单元格之间的内容根据数组计数和内容而有所不同。

例如: 第一个单元格 + 数组计数 + 最后三个单元格

数组计数始终不同。正如我上面解释的那样,如何制作表格视图。

4

3 回答 3

3

//第一个单元格的工作代码+[动态数组]+最后三个固定单元格

  #import "tableTOViewController.h"

@interface tableTOViewController ()

@end

@implementation tableTOViewController

- (void)viewDidLoad
{
 myArray=[[NSArray alloc] init];
 myArray=[NSArray arrayWithObjects:@"Aman",@"Atul",@"Karan",@"Yen",@"Chan",@"Lee", nil];

 lastFixedArray=[[NSArray alloc] init];
 lastFixedArray=[NSArray arrayWithObjects:@"Snakes",@"Food",@"Drink", nil];

    tblView.delegate=self;
    tblView.dataSource=self;
    [super viewDidLoad];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
 return [myArray count]+4;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
 static NSString *cellIdentifier=@"cellIdentifier";
 UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

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

 if (indexPath.row==0) 
  cell.textLabel.text=@"First Cell";
 else if (indexPath.row>[myArray count])
  cell.textLabel.text=[lastFixedArray objectAtIndex:([indexPath row]-[myArray count]-1)];
 else
  cell.textLabel.text=[myArray objectAtIndex:indexPath.row-1];

 return cell;
}


@end
于 2012-12-31T08:09:11.837 回答
2

如果要将子视图添加到最后三个单元格,则可以使用以下条件

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
 static NSString *cellIdentifier=@"cellIdentifier";
 UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

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

 if (indexPath.row==0) 
  cell.textLabel.text=@"First Cell";
 else if (indexPath.row>[myArray count])
 {
  int k=([indexPath row]-[myArray count]-1);

  switch (k) {
   case 0:
    [cell.contentView addSubview:thirdLastView];
    break;
   case 1:
    [cell.contentView addSubview:secondLastView];
    break;
   case 2:
    [cell.contentView addSubview:lastView];
    break;
  }
    cell.textLabel.text=[lastFixedArray objectAtIndex:k];
 }
 else
  cell.textLabel.text=[myArray objectAtIndex:indexPath.row-1];

 return cell;
}
于 2012-12-31T09:55:12.877 回答
1

在您的numberOfRows方法中,返回值为

4 + [array count];

cellForRowAtIndexPath做一个开关indexPath.row并相应地填充您的单元格内容。

于 2012-12-31T08:06:47.423 回答