I am tring to get email address of ABRecordRef like this:
ABRecordRef ref = CFArrayGetValueAtIndex( allPeople, i );
NSString *email = [(NSString*) ABRecordCopyValue( ref, kABPersonEmailProperty ) autorelease];
NSLog(@"%@", email);
It returning this:
_$!<Home>!$_ (0x6840af0) - [email protected] (0x6840cc0)
What's this stuff around the email? and how can I get rid of it?Thanks.