さまざまなストアの事前定義された場所があります。IOSアプリを使用してこれらの場所にチェックインしたいのですが、どうすればよいですか?
これが私がIOS5に使用したコードです
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
SBJSON *jsonWriter = [SBJSON new];
NSMutableDictionary *coordinatesDictionary = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithFormat: @"%f", latitude], @"latitude",
[NSString stringWithFormat: @"%f", longitude], @"longitude",
nil];
NSString *coordinates = [jsonWriter stringWithObject:coordinatesDictionary];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[[placesArray objectAtIndex:indexPath.row] objectForKey:@"id"], @"place", //The PlaceID
coordinates, @"coordinates", // The latitude and longitude in string format (JSON)
@"Testing check in", @"message", // The status message
nil];
// tags, @"tags", // The user's friends who are being checked in
[[appDelegate facebook] requestWithGraphPath:@"me/checkins" andParams:params andHttpMethod:@"POST" andDelegate: self];
// Deselect