This is what I use in a method:
// Availability check
NSURL *scriptUrl = [NSURL URLWithString:@"http://www.google.com/m"];
NSData *data = [NSData dataWithContentsOfURL:scriptUrl];
if (data) {
// Google's Mobile Site is Up, so we just assume The Internet is working
// Poor man's Availability ;)
baseURL = [NSString stringWithFormat:
@"http://xxx.xxx.xxx.xxx/YOURBASEURLHERE"];
NSString *serviceURL = [NSString stringWithFormat:
@"%@?property1=%@&property2=%@", baseURl, property1, property2];
NSURL *url = [NSURL URLWithString:[serviceURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
@try {
NSData *urldata;
urldata = [NSData dataWithContentsOfURL:url];
NSError *error;
NSDictionary *json;
json = [NSJSONSerialization JSONObjectWithData:urldata options:(NSJSONReadingOptions) kNilOptions error:&error];
success = [json objectForKey:@"success"];
if (success == TRUE) {
NSDictionary *usrData = [json objectForKey:@"YOURDATACONTAINER HERE"];
dataContainer = [[DataContainer alloc] init];
[dataContainer readFromJSONDictionary:usrData];
if ([sender respondsToSelector:@selector(loginSuccessful)]) {
[sender performSelector:@selector(loginSuccessful)];
}
} else {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Authentication Error" message:error delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];;
}
}
@catch (NSException *exception) {
[[[UIAlertView alloc] initWithTitle:@"Error"
message:@"JSON-Service not available"
delegate:nil cancelButtonTitle:@"OK"
otherButtonTitles:nil] show];
NSLog(@"Error: %@", exception);
}
}
else {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"No Internet Connection" message:@"You don't seem to have an internet connection, please check your connectivity settings." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
}
};
Then use the
- (void)readFromJSONDictionary:(NSDictionary *)d {
[self setContent:[d objectForKey:@"content"]];
if ([d objectForKey:@"content"] == [NSNull null]) {
[self setContent:@""];
}
}
method in DataContainer.m to parse over your results and have them set to your (custom) classes.
Hope this helps a bit!