I have used the following code to get user's friend list:
NSString* fql = [NSString stringWithFormat:@"SELECT name,uid FROM user WHERE uid IN ( SELECT uid2 FROM friend WHERE uid1=%lld )",appDelegate.session.uid];
NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
[[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params];
And I want to tag friends in my status post. I know this can be achieved by Facebook Graph api-
@[{user_id}:1:{name}]
But I don't know how to implement this. No idea. Can anyone please guide me how to implement this Facebook Graph API?