I m new to ios.i used following code.i am creating constant file.this file i need all over in program. from that file i need json dictionary. how i can get this plz help me out.
#import "constFile.h"
#import "SBJsonParser.h"
@implementation constFile
- (void) alertStatus:(NSString *)msg :(NSString *)title
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title
message:msg
delegate:self
cancelButtonTitle:@"Ok"
otherButtonTitles:nil, nil];
[alertView show];
}
-(void)jsonPost:(NSString *)string
{
NSString *loginJson=[NSString stringWithFormat:@"data=%@",string];
NSLog(@"jsonstring%@",loginJson);
NSURL *url=[NSURL URLWithString:@"http://lbwt-sl-745515119.ap-southeast- 1.elb.amazonaws.com:8080/wsserver.php"];
NSData *postData = [loginJson dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
//[NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:[url host]];
NSError *error = [[NSError alloc] init];
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Response code: %d", [response statusCode]);
if ([response statusCode] >=200 && [response statusCode] <300)
{
NSString *responseData = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"Response ==> %@", responseData);
SBJsonParser *jsonParser = [[SBJsonParser alloc]init];
json = (NSDictionary *) [jsonParser objectWithString:responseData error:nil];
NSLog(@"%@",json);
} else
{
if (error) NSLog(@"Error: %@", error);
[self alertStatus:@"Connection Failed" :@"Login Failed!"];
}
}
@end
i want access json dictionary an all program how can i do.