Skip to content

Instantly share code, notes, and snippets.

@follesoe
Created March 1, 2011 01:36
Show Gist options
  • Save follesoe/848434 to your computer and use it in GitHub Desktop.
Save follesoe/848434 to your computer and use it in GitHub Desktop.
public override void HandleResult (FBRequest request, NSDictionary dict)
{
var data = (NSArray)dict.ObjectForKey(new NSString("data"));
for(uint i = 0; i < 6; ++i)
{
var objDict = (NSMutableDictionary)Runtime.GetNSObject(data.ValueAt(i));
var name = objDict.ObjectForKey(new NSString("name"));
Console.WriteLine(name.ToString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment