hi everybody
I am new to iphone development. in my application i want to extract image from image tag from xml and then display it in left of table cell my code is
the xml tag of image is
<image>http://192.168.1.239/japantube/thumb/570.jpg</image>
now i in my code i have parse it in such form
int blogEntryIndex1 = [indexPath indexAtPosition: [indexPath length] -1];
NSString *imgstring =[[blogEntries objectAtIndex: blogEntryIndex1] objectForKey: @"image"];
now the path of image is store in image string what i am going to do is to extract the image from path and display it in left of cell which i am trying
cell.imageView.image=[UIImage imageNamed:imgstring];
when i run my application it crash down can anybody help me out em very upset due to that error thanks in advance