for showing image from url you can try this...
[ImageViewname setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",your url]]];
for showing image locally from app you can try this....
ImageViewname.image = [UIImage imageNamed:@"test.png"];
I hope this will help you.
happy coding...