Here,I am trying to get both the followers and followings of twitter using
 FHSTwitterEngine. Here is my code to get followers and adding
 dictionary into NSMutableArray to print in a tableView.
NSMutableDictionary *dict1 = [[FHSTwitterEngine sharedEngine]listFollowersForUser:usernames isID:NO withCursor:@"-1"];
  NSLog(@"====> %@",[dict1 objectForKey:@"users"] );
 twttrFrndListVC.twitterFrndList=[dict1 objectForKey:@"users"];
Using above code,I can get followers. But when i try to get both followers and followings,it doesn't work.
 NSMutableDictionary *dict1 = [[FHSTwitterEngine sharedEngine]listFollowersForUser:username isID:NO withCursor:@"-1"];
 NSMutableDictionary *dict2 = [[FHSTwitterEngine sharedEngine] listFriendsForUser:username isID:NO withCursor:@"-1"];
      NSLog(@"====> %@",[dict1 objectForKey:@"users"] );
     twttrFrndListVC.twitterFrndList=[dict1 objectForKey:@"users"],[dict2 objectForKey:@"users"];
Above code returns followers name only. How can I get values of both
 dictionaries ? How can I add two NSMutableDictionaries in one
 NSMutableArray ? Both the dictionaries have same keys. 
                        
To union different arrays together you want to use the following code:
In your specific case that would be:
Unfortunately I cannot tell if your Twitter code is correct as I've never worked with that. Hope that helps!
EDIT: I just saw you are using an NSMutableArray, which adds an additional way to do this:
In your case: