如何在iphone中给出字母顺序

时间:2011-10-10 09:58:41

标签: iphone objective-c

我在appdelegate类中有表和一个全局变量。我将所有日期存储在此全局数组中,并在表视图中的控制器中显示此数组值。我必须通过简短的字母顺序给出部分索引如何给予请帮助我 我试过这段代码,但它不适合我 请帮帮我 h.file

NSMutableArray *timeZonesArray;
NSMutableArray *sectionsArray;
UILocalizedIndexedCollation *collation;

.mfile

    #pragma mark -
    #pragma mark Table view data source

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
        // Return the number of sections.
        //return 1;
        return [[collation sectionTitles] count];
    }


    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
        // Return the number of rows in the section.

            //app.networkActivityIndicatorVisible = YES;
        NSArray *timeZonesInSection = [app.lstAirports objectAtIndex:section];

        return [timeZonesInSection count];


       // return app.lstAirports.count;

    }


    // Customize the appearance of table view cells.
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

        static NSString *CellIdentifier = @"Cell";

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
        }

        NSArray *timeZonesInSection = [app.lstAirports objectAtIndex:indexPath.section];


         a=(airport*)[timeZonesInSection objectAtIndex:indexPath.row];
        NSLog(@"str:%@",a);
        if(a!=nil){
        cell.textLabel.text =a.Name;
        cell.detailTextLabel.text=a.Code;
            //[app.spinner stopAnimating];
        }
        return cell;
    }




    #pragma mark -
    #pragma mark Table view delegate


    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
        return [[collation sectionTitles] objectAtIndex:section];
    }


    - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
        return [collation sectionIndexTitles];
    }


    - (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
        return [collation sectionForSectionIndexTitleAtIndex:index];
    }



    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
    {
        app.originAirport = (airport*)[app.lstAirports objectAtIndex:indexPath.row];
       [delegate Originstart:app.originAirport  forIndexPath:self.indexPathToChange];
        [self.navigationController popViewControllerAnimated:YES];
    }


    #pragma mark -
    #pragma mark Set the data array and configure the section data

    - (void)setTimeZonesArray:(NSMutableArray *)newDataArray {
        if (newDataArray != timeZonesArray) {
            [timeZonesArray release];
            timeZonesArray = [newDataArray retain];
        }
        if (timeZonesArray == nil) {
            self.sectionsArray = nil;
        }

    }

3 个答案:

答案 0 :(得分:0)

为了按字母顺序显示/排列您的数据,您必须使用NSSortDescriptor

你必须创建这个NSSortDescriptor类的对象并在这里给出你从XML获取的数据

NSSortDescriptor *itemXml = [[NSSortDescriptor alloc] initWithKey:@"itemName" ascending:YES];

现在假设您有一个数组sortDescriptors

NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:itemXml,nil];


[yourArray sortUsingDescriptors:sortDescriptors];

我希望这对你有用。

答案 1 :(得分:0)

如果您正在寻找分段排序,我会将您的各个部分保存在一个字典中,该字典包含每个部分的数组,然后根据需要对每个数组进行排序。它需要在表委托方法上添加更多代码,但允许完全控制每个部分的数据

另一种选择是将数据封装在不同的数据中,并为您想要的部分添加属性,并为其添加另一个排序描述符,以便按部分排序数组,然后按任何其他值排序。您只需按照希望对数组进行排序的顺序将另一个NSSortDescriptor添加到数组中即可。

答案 2 :(得分:0)

完美的例子,请参考代码, Sorting Alphabetically