ios - index 0 beyond bounds for empty array' *** First throw call stack :

标签 ios iphone nsarray

我收到如下错误请帮助我 Advance Thanks, This is the error iam getting index 0 beyond bounds for empty array' *** First throw call stack:--->> 下面是我的代码:

-(void)retriveContactsFromAddressBook
{
    //CFErrorRef error = NULL;
     ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL, NULL);

    if (addressBook!=nil)
    {
        NSArray *allContacts=(__bridge_transfer NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook);
        NSUInteger i=0;
        for ( i = 0; i<[allContacts count]; i++)
        {
            ABRecordRef contactPerson = (__bridge ABRecordRef)allContacts[i];
             NSString *firstName = (__bridge_transfer NSString*)ABRecordCopyValue(contactPerson, kABPersonFirstNameProperty);
            NSString *lastName=(__bridge_transfer NSString*)ABRecordCopyValue(contactPerson, kABPersonLastNameProperty);

            if (i==0) {
                self.FirstName=[NSMutableArray arrayWithObject:firstName];
                if (lastName==nil) {
                    self.LastName=[[NSMutableArray alloc]init];
                } else {
                    self.LastName=[NSMutableArray arrayWithObject:lastName];
                }

            } else {
                [self.FirstName addObject:firstName];

                if (lastName==nil) {
                    [self.LastName addObject:@""];
                } else {
                     [self.LastName addObject:lastName];
                }
            }
            NSString *full=[NSString stringWithFormat:@"%@ %@",[self.FirstName objectAtIndex:i],[self.LastName objectAtIndex:i]];

            if (i==0) {
                self.fullName=[NSMutableArray arrayWithObject:full];
            } else {
                [self.fullName addObject:full];
            }
        }
    }
    else
    {
        NSLog(@"Error Address book empty");
    }
}

我遇到如下错误---->>>

>Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
    *** First throw call stack:
    (0x2ce265f7 0x3a560c77 0x2cd3a157 0x126419 0x125edb 0x125cb7 0x302ce46d 0x30378325 0x3037824d 0x303777d1 0x3037750b 0x30377271 0x30377209 0x302cb97f 0x2fcf6f65 0x2fcf2951 0x2fcf27d9 0x2fcf21c7 0x2fcf1fd1 0x2fcebedd 0x2cded015 0x2cdea6f9 0x2cdeaafb 0x2cd37b31 0x2cd37943 0x340f0051 0x3032d6f1 0x1e1ea9 0x3aafcaaf)
    libc++abi.dylib: terminating with uncaught exception of type NSException
    (lldb) 

最佳答案

-(void)retriveContactsFromAddressBook
{
    //CFErrorRef error = NULL;
    ABAddressBookRef addressBook = ABAddressBookCreateWithOptions(NULL, NULL);

    self.LastName=[[NSMutableArray alloc]init];
    self.FirstName=[[NSMutableArray alloc]init];
    self.fullName=[NSMutableArray arrayWithObject:full];

    if (addressBook!=nil)
    {
        NSArray *allContacts=(__bridge_transfer NSArray*)ABAddressBookCopyArrayOfAllPeople(addressBook);
        NSUInteger i=0;
        for ( i = 0; i<[allContacts count]; i++)
        {
            ABRecordRef contactPerson = (__bridge ABRecordRef)allContacts[i];
            NSString *firstName = (__bridge_transfer NSString*)ABRecordCopyValue(contactPerson, kABPersonFirstNameProperty);
            NSString *lastName=(__bridge_transfer NSString*)ABRecordCopyValue(contactPerson, kABPersonLastNameProperty);

            if (firstName == nil) {
                [self.FirstName addObject:@""];
            } else {
                [self.FirstName addObject:firstName];
            }

            if (lastName==nil) {
                [self.LastName addObject:@""];
            } else {
                [self.LastName addObject:lastName];
            }

            NSString *full=[NSString stringWithFormat:@"%@ %@",[self.FirstName objectAtIndex:i],[self.LastName objectAtIndex:i]];

            [self.fullName addObject:full];
        }
    }
    else
    {
        NSLog(@"Error Address book empty");
    }
}

像这样使用..

self.LastName=[[NSMutableArray alloc]init];

这一行就是问题所在.. 如果姓氏为 nil 你没有插入任何对象

NSString *full=[NSString stringWithFormat:@"%@ %@",[self.FirstName objectAtIndex:i],[self.LastName objectAtIndex:i]];

但在这一行 [self.LastName objectAtIndex:i] 中,您尝试从有问题的空数组中检索对象...

关于ios - index 0 beyond bounds for empty array' *** First throw call stack :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28044625/

相关文章:

ios - 如何快速移动图像

iphone - Webview 不会返回到原始页面

objective-c - 在 objective-c 中存储单词列表

arrays - 检查数组是否包含 Swift 中字符串的一部分?

ios - 适用于 iOS 的 Adsense SDK

ios - 获取 token 失败,错误: Error Domain=NSCocoaErrorDomain Code=3000 "no valid ' aps-environment' entitlement string found for application"

iphone - 在应用程序内购买没有有效的产品 ID

ios - RestKit:映射二维数组(集合中的集合)

ios - 模拟位置 bt 在第二次运行时可用

java - 将 java 对象序列化为 objective-c plist