Objective c UITableView具有不同阵列设置的多个分区

Objective c UITableView具有不同阵列设置的多个分区,objective-c,ios,xcode,uitableview,Objective C,Ios,Xcode,Uitableview,我想在uitableview中有7个不同行的分区,我不知道如何编写不同的数组并将其设置在不同的分区中,我只编写一个分区,但我在每个分区中都有相同的数组 你能帮帮我吗 提前谢谢 我的意思是像下图一样,但使用不同的数组:例如,我不想在每个部分都使用test和hey 这是我的密码: @synthesize monthTitle; - (id)initWithStyle:(UITableViewStyle)style { self = [super init]; if (self) { mon

我想在uitableview中有7个不同行的分区,我不知道如何编写不同的数组并将其设置在不同的分区中,我只编写一个分区,但我在每个分区中都有相同的数组

你能帮帮我吗

提前谢谢

我的意思是像下图一样,但使用不同的数组:例如,我不想在每个部分都使用test和hey

这是我的密码:

@synthesize monthTitle;

- (id)initWithStyle:(UITableViewStyle)style
{
self = [super init];
if (self) {
    monthTitle = [[NSMutableArray alloc] init];
}
return self;

}

- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
[super viewDidLoad];
 arry = [[NSMutableArray alloc] init];
[arry addObject:@"test"];
[arry addObject:@"hey"];



// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;

// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
self.navigationItem.leftBarButtonItem = self.editButtonItem;
UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd 
 target:self action:@selector(addNewItem)];
self.navigationItem.rightBarButtonItem = rightButton;
}

-(void)addNewItem{
[arry addObject:@"New Day"];
    [self.tableView reloadData];
}
//- (IBAction)DeleteButtonAction:(id)sender
//
//{
//    
//    [arry removeLastObject];
//    
//    [self.tableView reloadData];
//    
//}

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
[super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 7;
//_week.days.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [arry count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [self.tableView 
                         dequeueReusableCellWithIdentifier:@"Cell"];


cell.textLabel.text = [arry objectAtIndex:indexPath.row];
return cell;

}


- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {

if(section == 0)
    return @"Monday";
else if(section == 1){
    return @"Tuesday";
}else if(section == 2){
    return @"Wednesday";
} else if(section == 3){
    return @"Thuesday";
} else if(section == 4){
    return @"Friday";
} else if(section == 5){
    return @"Saturday";
}else
    return @"Sunday";

}


// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}




- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle 
  forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)  
{
    [arry removeObjectAtIndex:indexPath.row];
    //[self.monthTitle removeObjectAtIndex:indexPath.row];

    [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:
     UITableViewRowAnimationFade];

//    }else if (editingStyle==UITableViewCellEditingStyleInsert) {

} 
//[self.tableView重载数据]; }

#pragma标记-表视图委托
-(void)tableView:(UITableView*)tableView未选择RowatineXpath:(NSIndexPath*)indexPath
{
//导航逻辑可能位于此处。创建并推送另一个视图控制器。
/*
*detailViewController=[[alloc]initWithNibName:@“bundle:nil];
// ...
//将选定对象传递给新的视图控制器。
[self.navigationController pushViewController:detailViewController动画:是];
*/
}
@结束

我认为以下文档中的数组部分将指导您:

在cellForRowAtIndexPath函数中,设置如下条件

if(indexpath.section == 0)
{
   cell.textlabel.text = [array1 objectAtIndex:indexpath.row];
}
else if(indexpath.section == 1)
{
   cell.textlabel.text = [array2 objectAtIndex:indexpath.row];
}
..
..
..
etc
if(indexpath.section == 0)
{
   cell.textlabel.text = [array1 objectAtIndex:indexpath.row];
}
else if(indexpath.section == 1)
{
   cell.textlabel.text = [array2 objectAtIndex:indexpath.row];
}
..
..
..
etc