I'm trying to post a feed and attach the friend by "with_tags". But no matter I use NSArray or NSDictionary, it always report such error
[NSArrayM length]: unrecognized selector sent to instance 0x683ee50 or NSDictionary length.
My code is as below
for(id<FBGraphUser> user in fbFriendPickerController.selection){
NSDictionary *userDic = [[NSDictionary alloc]initWithObjectsAndKeys:user.id,@"id",user.name,@"name", nil];
[data setObject:userDic forKey:@"data"];
}
NSDictionary *param = [[NSDictionary alloc]initWithObjectsAndKeys:@"test",@"message", data,@"with_tags",nil];
Hope someone can help on this. Many thanks.