How to get the username value only from the addressbook, when selecting a twitter detail of contact

if ( property == kABPersonSocialProfileProperty) {

        ABMultiValueRef multi = ABRecordCopyValue(person, property);


        for (CFIndex i = 0; i < ABMultiValueGetCount(multi); i++) {

            CFStringRef socialLabel = ABAddressBookCopyLocalizedLabel(ABMultiValueCopyLabelAtIndex(multi, identifier));

            CFStringRef social = ABMultiValueCopyValueAtIndex(multi, i);

            NSDictionary* personaddress =(NSDictionary*) ABMultiValueCopyValueAtIndex(multi, i);        

            NSString*twitterdetails = [personaddress valueForKey:(NSString *)kABPersonSocialProfileServiceTwitter];
            NSLog(@"%@ twitterdetails",twitterdetails);  


            NSString *aString = (NSString *)social;


            NSLog(@"%@ aString",aString);
        }

I am getting the result as below

{
    service = twitter;
    url = "http://twitter.com/manoas2136";
    username = manoas2136;
} aString

please tell me how to get only the username from the above result set

link|improve this question

66% accept rate
feedback

2 Answers

up vote 2 down vote accepted

try this code

  NSDictionary* personalDetails = [NSDictionary dictionaryWithDictionary:(NSDictionary*)ABMultiValueCopyValueAtIndex(multi, i)];
  NSString* aString = [personalDetails valueForKey:@"username"];
  NSLog(@"%@ aString",aString);

result manoas2136 aString

you converted the NSDictionary value in to string so it clubbed all result of NSDictionary to NSString so you extract only username by using valueForKey:

link|improve this answer
Thanks a lot dude...it works..really you have helped me... – user198725878 Feb 9 at 12:07
feedback

I have tried this way to fetch the twitter address from the iphone contactlist. and it works fine..

ABMultiValueRef multi = ABRecordCopyValue(person, kABPersonSocialProfileProperty);

for (CFIndex i = 0; i < ABMultiValueGetCount(multi); i++) 
{

    NSDictionary* personalDetails = [NSDictionary dictionaryWithDictionary:(NSDictionary*)ABMultiValueCopyValueAtIndex(multi, i)];
    NSLog(@"%@",personalDetails);

    NSString* aString1 = [personalDetails valueForKey:@"username"];
    NSLog(@"%@ aString",aString1);
    Twitter.text = [personalDetails valueForKey:@"username"];
}
//get Twitter Address end....
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.