Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Facebook API を使用して、最後に確認された場所を取得するにはどうすればよいですか? 私は試した
NSLog(@"%@", user.location);
しかし、私はヌルを受け取っています。
もっと情報が必要でしょう。これをどのメソッドで呼び出していますか?
この情報は、成功時に NSDictionary を返す FBRequest から取得する必要があります。それからあなたはできる...
[[dict objectForKey:@"location"] objectForKey:@"name"];
その場所の名前を返します。