Hi I am new to programming. My problem is that i can not parse images. The images need to be parsed into a list with text.
I am using JSONKit to parse json. I have an older version of xcode and only have simulator 4.3.
I can parse text but not images. I have looked at a few examples on how to parse images but was not able to do it correctly.
The json I want to parse:
{[{"n_id":"1","n_name":"Green","n_text":"this is test","Image":"dasdas.jpg"}]}
I think i need to use something like this
NSData *img=[[NSData alloc]initWithContentsOfURL:url];
UIImage *image=[UIImage imageWithData:img];
But i have no idea how to incorporate it into my code. I am a bit lost.
Thanks in advance
////Json2ViewController.h
@interface Json2ViewController : UIViewController {
NSArray * list;
NSString * content;
NSString * many;
NSString * thumbNail;
NSMutableArray *studName;
NSMutableArray *ntext;
NSMutableArray *imagesArray;
NSArray *images;
}
@property (nonatomic, retain) NSMutableArray* studName;
@property (nonatomic, retain) NSMutableArray* ntext;
@property (nonatomic, retain) NSMutableArray* imagesArray;
//Json2ViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
NSData * JSONdata =[[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://myurl.com"]];
if([JSONdata length] == 0){
[JSONdata release];
return;
}
NSArray *students =[JSONdata objectFromJSONData];
studName = [[NSMutableArray alloc] init];
ntext = [[NSMutableArray alloc] init];
imagesArray = [[NSMutableArray alloc] init];
for(NSDictionary *student in students)
{
content = [student objectForKey:@"n_name"];
if(content)
[studName addObject:content];
many = [student objectForKey:@"n_text"];
if(many)
[ntext addObject:many];
images = [student objectForKey:@"Image"];
if(images)
[imagesArray addObject:images];
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}
cell.imageView.image = = [imagesArray objectAtIndex:indexPath.row];
cell.textLabel.text = [studName objectAtIndex:indexPath.row];
cell.detailTextLabel.text = [ntext objectAtIndex:indexPath.row];
return cell;
}