iOS: user's full name for an ACAccountTypeIdentifierFacebook
问题 I'm using the Facebook integration of iOS to allow user to sign in with their Facebook account. I encountered a problem getting the user's full name. I'm creating an ACAccount of type ACAccountTypeIdentifierFacebook . After some searching I found out this little snippet to get the full name: // account is an ACAccount instance NSDictionary *properties = [account valueForKey:@"properties"]; NSString *fullName = properties[@"fullname"]; I tested it, and it worked. It worked on several devices.