сгруппируйте массив словарей по дате из xml в iOS

#ios #parsing

#iOS #синтаксический анализ

Вопрос:

Вот мой код. Пожалуйста, помогите.

 NSDictionary *xmlDict = [NSDictionary dictionaryWithXMLString:Str];
NSArray *fixtureslist1 = [[xmlDict objectForKey:@"Matches"] objectForKey:@"eMatches"];
NSMutableDictionary *dictionaryByDate = [NSMutableDictionary new];

for(NSDictionary *dictionary in fixtureslist1)
{
    NSString *dateString = dictionary[@"MatchDate"];
    NSMutableArray *arrayWithSameDate = self.resultsSection[dateString];
    if(! arrayWithSameDate)
    {
        arrayWithSameDate = [NSMutableArray new];
        self.resultsSection[dateString] = arrayWithSameDate;
    }
    [arrayWithSameDate addObject: dictionary];
}
//NSLog(@"dictionaryByDate:%@",self.resultsSection);
NSSortDescriptor *descriptor=[[NSSortDescriptor alloc] initWithKey:@"self" ascending:NO];
NSArray *descriptors=[NSArray arrayWithObject: descriptor];
reverseOrder=[[self.resultsSection allKeys] sortedArrayUsingDescriptors:descriptors];
NSLog(@"results:%@",reverseOrder);
 

Комментарии:

1. Хай, кто-нибудь, пожалуйста, помогите мне прицелиться, застрявший здесь с прошлой 1 недели

2. Пожалуйста, объясните вашу проблему. Вы только что вставили свой код. Этого недостаточно. Расскажите нам, что вы получите в XML и как вы пытаетесь их сгруппировать.

3. цель получения приведенного ниже ответа в виде массива, содержащего внутренние словари, я хочу сгруппировать их по дате в порядке убывания

4. Я не видел никакого ответа?

5. привет @user3614885! пожалуйста, обновите свой вопрос полученным кодом ответа. Также, пожалуйста, укажите свои требования в самом вопросе, а не комментируйте его ниже.

Ответ №1:

 @property (nonatomic, retain) NSMutableDictionary *sections;
 

в viewDidLoad

 self.sections = [[NSMutableDictionary alloc]init];
 [self setupSections];

- (void)setupSections
{
    BOOL found;

    // Loop through the items and create our keys
    for (YourObject *item in self.items)
    {
        NSString *date= item.Matchdate;
        found = NO;
        for (NSString *str in [self.sections allKeys])
        {
            if ([str isEqualToString:date])
            {
                found = YES;
            }
        }
        if (!found)
        {
            [self.sections setObject:[[NSMutableArray alloc] init] forKey:date];
        }
    }
    // Loop again and sort the items into their respective keys
    for (YourObject *item in self.items)
    {
        [[self.sections objectForKey:item.MatchDate addObject:item];
    }

    for (NSString *key in [self.sections allKeys])
    {
        [[self.sections objectForKey:key] sortUsingDescriptors:[NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@“MatchDate" ascending:NO]]];
    }
//Reload tableView by using self.sections
    [self.tableView reloadData];
}


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return  [[self.sections allKeys] count];
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    NSString *sectionHeader = @"";
    if(!isFiltered)
    {
        sectionHeader = [[[self.sections allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:section];
    }
    return sectionHeader;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    int rowCount;
    rowCount = [[self.sections objectForKey:[[[self.sections allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:section]] count];

    return rowCount;
}

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

    cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
        if (cell == nil)
        {
            cell = [[UITAbleViewCellalloc] initWithStyle:UITableViewCellStyleSubtitle
                                              reuseIdentifier:CellIdentifier];
        }
    YourObject *item = [[self.sections objectForKey:[[[self.sections allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)] objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
    return cell;
}
 

Комментарии:

1. Это приводит к сбою приложения

2. Теперь у меня нет времени на перекрестную проверку кода. На данный момент, пожалуйста, переверните массив self.items.

3. @user3614885 Пожалуйста, прекратите запрашивать автономную помощь по этой проблеме. Люди добровольно отвечают на вопросы о переполнении стека, и приставать к ним неуместно.

4. Я прошу помощи, никого не беспокоя, если вы можете помочь дать ответ или сохранить довольно

5. @user3614885 неоднократный запрос у пользователей их контактных данных в Skype или facebook является преследованием. Не только это, но и на вопросы следует отвечать на сайте, а не где-либо еще, иначе это не поможет другим пользователям с той же проблемой.

Ответ №2:

Сначала вам нужно проанализировать XML-ответ и создать массив словарей.Затем вы можете выполнить сортировку, используя следующий код

 NSSortDescriptor *sortDescriptor;
sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"date"
                                              ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
NSArray *sortedArray;
sortedArray = [arrayOfDictionaries sortedArrayUsingDescriptors:sortDescriptors];
 

Комментарии:

1. Hai я хочу отсортировать в порядке убывания и отобразить в сгруппированном uitableview, я пробовал это, но это не работает

2. Отредактируйте свой вопрос с помощью XML-ответа и NSLog arrayOfDictionaries(fixturesList1)

3. api.qlao.com/mobileservice.svc//GetResultsListForUserFans/83e1e30d-9d53-4aa3-9999-3b3d95beec24 проверьте по этой ссылке

4. Хай, может кто-нибудь, пожалуйста, мне помочь

5. эта ссылка не работает для меня. Пожалуйста, загрузите ответ на ваш вопрос