显示单元部分明智地导致 iOS 应用程序崩溃

Posted

技术标签:

【中文标题】显示单元部分明智地导致 iOS 应用程序崩溃【英文标题】:Display cell section wise crashes iOS app 【发布时间】:2013-11-18 09:40:48 【问题描述】:

我有Tableview,其中包含从AZ 的部分(我动态计算的部分数量不固定)

我想这样显示: : 我的数组值:msg_array=["AajKaCatch","AajKaItem","Anari","Big C Mobiles","Big Flix","BigRock","caksonflowers, ...."]

当我尝试在cellForRowAtIndexPath 中这样显示时,它会显示NSInvalidArgumentException

cell.textLabel.text=[[[msg_array objectAtIndex:indexPath.section] objectAtIndex:indexPath.row] objectForKey:@"Merchant_Name"];

请帮助并提前致谢。

【问题讨论】:

msg_array 仅包含字符串对象。它应该包含 NSArray 的对象,其中将包含 NSDictionary 类型的对象。 【参考方案1】:

你的数组是这样的:

arrayobject,object,object,object,object;

在这种情况下,你不能使用like:

[[msg_array objectAtIndex:indexPath.section] objectAtIndex:indexPath.row]

因为要实现这样一个,[msg_array objectAtIndex:indexPath.section] 应该返回一个数组。

所以实现这个,你需要这样尝试:

arrayarrayobjects starts with 'A',arrayobjects starts with 'B',arrayobjects starts with 'C';

【讨论】:

-(void)createAlphabetArray NSMutableArray *tempFirstLetterArray = [[NSMutableArray alloc] init]; for (int i = 0; i < [msg_array count]; i++) NSMutableArray *temp=[[NSMutableArray alloc] init]; NSString *letterString = [[[msg_array objectAtIndex:i] objectForKey:@"Merchant_Name"] substringToIndex:1]; if (![tempFirstLetterArray containsObject:[letterString uppercaseString]]) [tempFirstLetterArray addObject:letterString]; [temp addObject:[[msg_array objectAtIndex:i] objectForKey:@"Merchant_Name"]]; 你说得对,但是如何在我的数组中添加元素?以上是我写的代码,但只添加了字符的第一个元素 @Krunal:在你的代码中,当它找到一个新字符时,if 块将为真,在所有其他情况下它将为假。所以它不会添加其他对象 那么,我该如何添加呢?【参考方案2】:

当你这样做时:

[[[msg_array objectAtIndex:indexPath.section] objectAtIndex:indexPath.row] objectForKey:@"Merchant_Name"];

您正在访问 msg_array 的元素,就好像它是一个 NSArray,其中包含一个 NSDictionary

但是,在 msg_array 内部你只有NSStrings

您尝试访问的结构是:

NSArray -> NSArray -> NSDictionary

你有

NSArray -> NSString

【讨论】:

你说得对,但是如何在我的数组中添加元素?下面是我写的代码,但它只添加了字符的第一个元素 -(void)createAlphabetArray NSMutableArray *tempFirstLetterArray = [[NSMutableArray alloc] init]; for (int i = 0; i < [msg_array count]; i++) NSMutableArray *temp=[[NSMutableArray alloc] init]; NSString *letterString = [[[msg_array objectAtIndex:i] objectForKey:@"Merchant_Name"] substringToIndex:1]; if (![tempFirstLetterArray containsObject:[letterString uppercaseString]]) [tempFirstLetterArray addObject:letterString]; [temp addObject:[[msg_array objectAtIndex:i] objectForKey:@"Merchant_Name"]]; 【参考方案3】:

我使用 FKRSearchBarTableViewController 对联系信息和其他类似的事情做了同样的事情,请参阅链接,下面是我的 FKRSearchBarTableViewController 代码

    - (id)initWithSectionIndexes:(BOOL)showSectionIndexes withDataSource:(NSArray*) dataSource withControllerId:(int) ControllerId forGroup:(int)groupId

if ((self = [super initWithNibName:nil bundle:nil])) 
    self.title = @"Search Bar";
    NSLog(@"%d",groupId);
    _groupID = groupId;
    _controllerId = ControllerId;

    _showSectionIndexes = showSectionIndexes;

    _famousPersons = [[NSMutableArray alloc]initWithArray:dataSource];
    if (showSectionIndexes) 
        UILocalizedIndexedCollation *collation = [UILocalizedIndexedCollation currentCollation];

        NSMutableArray *unsortedSections = [[NSMutableArray alloc] initWithCapacity:[[collation sectionTitles] count]];
        for (NSUInteger i = 0; i < [[collation sectionTitles] count]; i++) 
            [unsortedSections addObject:[NSMutableArray array]];
        
        if(ControllerId == 5)
        
        for (Person *personName in self.famousPersons) 

               // NSInteger index = [collation sectionForObject:[personName objectForKey:@"FirstName"] collationStringSelector:@selector(description)];
            NSLog(@"%@",personName.firstName);
            NSInteger index = [collation sectionForObject:personName.firstName collationStringSelector:@selector(description)];
                [[unsortedSections objectAtIndex:index] addObject:personName];
        
        
        else
        
            for (NSDictionary *personName in self.famousPersons) 

                 NSInteger index = [collation sectionForObject:[personName objectForKey:@"FirstName"] collationStringSelector:@selector(description)];

                [[unsortedSections objectAtIndex:index] addObject:personName];
            

        

        NSMutableArray *sortedSections = [[NSMutableArray alloc] initWithCapacity:unsortedSections.count];
        for (NSMutableArray *section in unsortedSections) 
            [sortedSections addObject:[NSMutableArray arrayWithArray:[collation sortedArrayFromArray:section collationStringSelector:@selector(description)]]];
        

        self.sections = [NSMutableArray arrayWithArray:sortedSections];

    

【讨论】:

【参考方案4】:

为了让列表更加动态,解决方案应该是

// given NSArray names = your full list of name
//       NSArray indexes = your list of index

NSMutableArray *nameSections = [NSMutableArray arrayWithCapacity:26];
NSMutableArray *filteredIndexes = [NSMutableArray arrayWithCapacity:26];

for (NSString *index in indexes) 

    NSPredicate *predicate = [NSPredicate predicateWithFormat:
                              @"SELF beginswith[c] %@",index];
    NSArray *filterNames = [names filteredArrayUsingPredicate:predicate];

    if(filterNames.count>0)
        [nameSections addObject:filterNames];
        [filteredIndexes addObject:index];
    



NSLog(@"filteredIndexes %@",filteredIndexes);
NSLog(@"nameSections %@",nameSections);


numOfSection = nameSections.count
numOfRow = [[numOfSection indexOfObject:section]count];
name = [[numOfSection indexOfObject:section]] indexOfObject:row];


// print log
//given indexes array a~z

names (
"a_string",
"a_string2",
"b_string",
"b_string2"
)

filteredIndexes (
a,
b
)

nameSections (
    (
    "a_string",
    "a_string2"
    ),
    (
    "b_string",
    "b_string2"
    )
)

【讨论】:

以上是关于显示单元部分明智地导致 iOS 应用程序崩溃的主要内容,如果未能解决你的问题,请参考以下文章

Swift-由于statusBarWindows而导致应用程序崩溃

Kotlin 协程协程异常处理 ④ ( Android 协程中出现异常导致应用崩溃 | Android 协程中使用协程异常处理器捕获异常 | Android 全局异常处理器 )

Kotlin 协程协程异常处理 ④ ( Android 协程中出现异常导致应用崩溃 | Android 协程中使用协程异常处理器捕获异常 | Android 全局异常处理器 )

从 UITableViewController 中删除表格单元格会导致崩溃?

获取的结果导致部分崩溃

iOS Subview 按钮导致应用程序崩溃