TableView部分

时间:2013-03-25 11:30:30

标签: objective-c arrays uitableview sections

我有一个NSArray,其中包含一个键列表,这个数组来自.plist。

此时我将这个数组写在UITableView中,但是这个数组没有排序和分段。 我想对此数组进行排序,并希望在此UITableView中包含以此数组中每个字符的第一个字符开头的节。

例如: 栏目名称:“A” Celltext:“Ahorn”

我希望你明白。 我的代码现在:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

NSArray * sections = [temp allValues];

NSUInteger *tablesections = [sections count];

return tablesections;


}

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

    NSArray * values = [temp allValues];

[EingabeListe addObjectsFromArray:values];

char szDecryptetKey[256];
sleep(0.5);


NSString *cellValue = [values objectAtIndex:indexPath.row];
const char *cString = [cellValue cStringUsingEncoding:NSASCIIStringEncoding];

DecryptKey(cString, szDecryptetKey);

NSString *pnssDecryptetKey = [NSString stringWithFormat:@"%s",szDecryptetKey];


cell.textLabel.font = [UIFont systemFontOfSize:11.0];
cell.textLabel.text = pnssDecryptetKey;

return cell;

由于

4 个答案:

答案 0 :(得分:1)

我可能不会把它留在一个数组中。我会把它放到NSDictionary中,其中字母表的每个字母都是一个桶,用于表示字母表的每个首字母(和一个部分)。然后获取单个部分的内容就像在字典中查找所需的第一个字母一样简单。

首先按字母顺序对数组进行排序。这已被问了很多次,但这里是one answer

接下来,迭代数组并根据第一个字母将其添加到字典中。字典中的每个“值”都是一个数组,而不仅仅是一个项目。因此,当你第一次找到一个字母(比如'g')时,你会在字典中创建“g”键并添加一个NSMutable数组作为值。

作为旁注,我没有添加代码,因为这听起来像是一个家庭作业(当然我可能是错的)。虽然我想帮忙,但我不想为你做。也就是说,如果不清楚或者你想要更多的帮助,我很乐意提供)。

答案 1 :(得分:0)

为此你需要在代码中进行修改。我会解释你,

步骤:

  1. 根据字母表初始化字母数组和过滤器使用源数组。
  2. 现在dataSource字典包含按字母表过滤的源数据数组。
  3. 现在没有。部分将是否定的。字典中的数组。
  4. 从数据源字典中为每个部分加载数据源数组。
  5. 初始化字母数组和数据源数组

        alphabet = [[NSArray alloc]initWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",
                                        @"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",nil];
    
      dataSource = [[NSMutableDictionary alloc]initWithCapacity:[alphabet count]];
    
      sourceArray = [NSArray arrayWithObjects:@"Azz",@"ax",@"aje",@"B",@"C",@"Ca",@"D",@"DD",@"E",@"EE",@"F",@"G",@"F", nil];
    

    过滤源数组并将数据添加到字典中,键值为字母

    for(int i = 0; i<[alphabet count]; i ++)
     {
     NSArray *filteredArray = [sourceArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF BEGINSWITH[C] %@", [alphabet objectAtIndex:i]]];
      if([filteredArray count]>0)
       dataSource setObject:[filteredArray sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)] forKey:[alphabet objectAtIndex:i]]; // Dictionary containing sorted array of data with key as alphabets
    
    }
    

    你需要自定义否。段和行委托方法。请参阅示例代码。

    喜欢这个

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
    
        // Return the number of sections.
        return [[dataSource allKeys] count];
    }
    
          - (NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section 
    {
                    return [[dataSource allKeys] objectAtIndex:section]; 
    }
    

    使用此代码对我来说工作正常。

    整个源代码:

         - (void)viewDidLoad
            {
                [super viewDidLoad];
    
    
                alphabet = [[NSArray alloc]initWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",
                            @"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",nil];
    
                dataSource = [[NSMutableDictionary alloc]initWithCapacity:[alphabet count]];
    
                sourceArray = [NSArray arrayWithObjects:@"Azz",@"ax",@"aje",@"B",@"C",@"Ca",@"D",@"DD",@"E",@"EE",@"F",@"G",@"F", nil];
    
                for(int i = 0; i<[alphabet count]; i ++)
                {
                    NSArray *filteredArray = [sourceArray filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF BEGINSWITH[C] %@", [alphabet objectAtIndex:i]]];
                    if([filteredArray count]>0)
                        [dataSource setObject:[filteredArray sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)] forKey:[alphabet objectAtIndex:i]]; // Dictionary containing sorted array of data with key as alphabets
    
                }
                NSLog(@"Filtered Array %@", dataSource);
    
    
            }
    
    
            #pragma mark - Table view data source
    
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
    
        // Return the number of sections.
        return [[dataSource allKeys] count];
    }
    
          - (NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section 
    {
                    return [[dataSource allKeys] objectAtIndex:section]; 
    }
    
    
            - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
            {
    
    
                return [[dataSource objectForKey:[[dataSource allKeys] objectAtIndex:section]] count];
    
            }
    
            - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
            {
    
                return 20;
            }
            - (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath
            {
                return NO;
            }
    
    
            - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
            {
    
                originalSource = [dataSource objectForKey:[[dataSource allKeys] objectAtIndex:indexPath.section]];
    
                static NSString *CellIdentifier = @"Cell";
                UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
                if (cell == nil) {
                    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
                }
                cell.textLabel.text = [NSString stringWithFormat:@"%@",[originalSource objectAtIndex:indexPath.row]];
                return cell;
    
            }
    
    
            #pragma mark - Table view delegate
    
            - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
            {
    
            }
    

    输出将是这样的。

    enter image description here

    希望这段代码能帮到你。我知道很难理解整个代码。有任何疑问随时可以问。

答案 2 :(得分:0)

我通常使用免费的Sensible TableView框架来处理这类应用。您实际上只是将数组抛出到框架,它将自动排序并为您创建所有部分。应该花几分钟时间来实施,所以我建议你查看它。

答案 3 :(得分:0)

嗨,谢谢它的工作非常好。 但我只能看到我的.plist的第一个角色。

我认为错误的是这一行:

NSString *cellValue = [values objectAtIndex:indexPath.row];

但这是我的代码:

[super viewDidLoad];
self.EingabeListe = [NSMutableArray arrayWithCapacity:20];
NSIndexPath *indexPath = 0;


alphabet = [[NSArray alloc]initWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",
            @"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"123",nil];

datasource = [[NSMutableDictionary alloc]initWithCapacity:[alphabet count]];

int m = 1;
int n = 0;
NSArray * values = [temp allValues];
int c = [values count];

//

char szDecryptetKey[256];
sleep(0.5);


while (m != 0) {
    if ( n == c){
        m = 0;
    }else{
        NSString *cellValue = [values objectAtIndex:indexPath.row];
        const char *cString = [cellValue cStringUsingEncoding:NSASCIIStringEncoding];



        NSString *pnssDecryptetKey = [NSString stringWithFormat:@"%s",szDecryptetKey];

        [EingabeListe addObject:pnssDecryptetKey];
        pnssDecryptetKey = 0;
    }
    n++;

}

for(int i = 0; i<[alphabet count]; i ++)
{
    NSArray *filteredArray = [EingabeListe filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF BEGINSWITH[C] %@", [alphabet objectAtIndex:i]]];
    if([filteredArray count]>0)
        [datasource setObject:[filteredArray sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)] forKey:[alphabet objectAtIndex:i]]; // Dictionary containing sorted array of data with key as alphabets

}
}

在我的.plist中有一些测试键和值如下:

价值键 sqq嗨 zzz例如 egg bb

但是在my.plist中我只能看到: SQQ SQQ SQQ

为什么?