I'm getting the error like below plz help me Advance Thanks, This is the error iam getting index 0 beyond bounds for empty array' *** First throw call stack:--->> Below is my code:
-(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");
}
}
I'm getting error like below---->>>
>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)
[self.FirstName objectAtIndex:i]&[self.LastName objectAtIndex:i]lines. Have you checked that both contains some values?self.LastNamearray? Does it contains any value?