I m a noob what i want is to convert a NSDictionary object to NSInteger.i m parsing json objects and storing it in an NSMutableArray,which is then stored in NSDictionary object called boy.could you guys help me out.below is the code.
NSURLRequest *request = [NSURLRequest requestWithURL:jsonurl cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
connection1=[[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];
NSLog(@"jsonurl:%@",jsonurl);
self.jsonData=[NSData dataWithContentsOfURL:jsonurl];
NSDictionary *items=[NSJSONSerialization JSONObjectWithData:self.jsonData options:NSJSONReadingMutableLeaves error:nil];
NSLog(@"blah:%@",jsonArray);
items1 = [items objectForKey:@"ThingsTodo"];
story = [[NSMutableArray array]retain];
media1 = [[NSMutableArray array]retain];
url=[[NSMutableArray array]retain];
media2=[[NSMutableArray array]retain];
descriptiondesc=[[NSMutableArray array]retain];
for (NSDictionary *item in items1)
{
[self.story addObject:[item objectForKey:@"Name"]];
[self.media1 addObject:[item objectForKey:@"Status"]];
[self.media2 addObject:[item objectForKey:@"Image"]];
}
NSDictionary *boy=[self.media1 objectAtIndex:indexPath.row];
Put your
nsdictionary
value intonsstring
and then take anNSInteger
and do like :