在iphone的表视图中创建多个部分

时间:2014-01-27 13:38:29

标签: uitableview ios7

我正在创建这样的表视图,它没有指定部分的数量(这意味着应该在其尊重的委托中动态指定部分的数量,即 - - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView )或者没有指定每个部分中的行(这意味着每个部分中的行数也应该在其受尊重的委托中动态指定,即 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)部分)如下图所示,其中表的部分指定了包含年份的月份,每个部分可以包含任意数量的行。图像是 -

enter image description here

如上图2014年1月部分有4行,2013年12月有2行。我想创建这种类型的表视图。可能吗 ?如果有可能请提供正确的方式或任何示例或任何我可以实现它的链接。谢谢你提前。

2 个答案:

答案 0 :(得分:3)

请使用以下代码。希望这对你有用。

<。>在.h文件中 int i

<。>在.m文件的 viewdidload 方法

arrData = [NSMutableArray array];

int temp = 1;

for (i = 0; i < 5; i++) {
    NSMutableArray * arrIndexData = [NSMutableArray array];
    for (int j = 0; j<=i; j++,temp++) {
        [arrIndexData addObject:[NSString stringWithFormat:@"%d",temp]];
    }
    [arrData addObject:arrIndexData];
}

现在位于 numberOfSectionsInTableView

return i;
numberOfRowsInSection

中的

return [arrData count];
cellForRowAtIndexPath

中的

static NSString *CellIdentifier = @"Cell";

CustomCell * cell = (CustomCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    cell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
}

[cell reloadTableWithArrData:[arrData objectAtIndex:indexPath.row]];

return cell;

我希望,这会帮助你..

答案 1 :(得分:1)

@Jekil,只需将你的DateFormatter设置为 MMMM yyyy

查看我更新的答案

正如所有人建议的那样,在Dictionary中使用Array of Dictionary,为Title(Nsstring)放置两个对象,第二个是NSArray(用于单元格细节的dict),

我已在我的应用中实现了一种方法,

注意:使用您的数据键值。

使用以下代码排列数组,

-(NSMutableArray*)arrangeSection:(NSMutableArray *)source
{
    NSDateFormatter *_formatter=[[NSDateFormatter alloc]init];
    [_formatter setLocale:[NSLocale currentLocale]];
    [_formatter setDateFormat:@"MMMM yyyy"];
    NSMutableArray *arrayMain=[NSMutableArray array];
    for (int i=0; i<source.count; i++){
        NSDictionary *dict=source[i];
        NSDate *date = [NSDate dateWithTimeIntervalSince1970:[[dict objectForKey:@"StartDate"]doubleValue]];
        NSString *mm=[_formatter stringFromDate:date];
        NSMutableDictionary *secDict=[NSMutableDictionary dictionary];
        NSMutableArray *secArray=[NSMutableArray array];

        if (i==0){
            [secDict setObject:mm forKey:@"Month"];
            [secArray addObject:dict];
            [secDict setObject:secArray forKey:@"Data"];
            [arrayMain addObject:secDict];
        }
        else{
            BOOL flg=NO;
            for (NSDictionary *dict2  in arrayMain){
                if([[dict2 objectForKey:@"Month"]isEqualToString:mm]){
                    flg=YES;
                    [[dict2 objectForKey:@"Data"]addObject:dict];
                    break;
                }
            }

            if (!flg){
                [secDict setObject:mm forKey:@"Month"];
                [secArray addObject:dict];
                [secDict setObject:secArray forKey:@"Data"];
                [arrayMain addObject:secDict];

            }
        }
    }
    return arrayMain;
}

现在在tableview中使用as,

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return arrayEvents.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
        return [[arrayEvents[section]objectForKey:@"Data"]count];

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

...
  NSDictionary *aDict = [arrayEvents objectAtIndex:indexPath.section];
            NSDictionary *maindict=[[aDict objectForKey:@"Data"]objectAtIndex:indexPath.row];
...
}