How do I display an image in the UIImageView component from the hard drive?
I have a local folder called \"images\" and would like to access it via a relative path,
UIImage *img = [UIImage imageWithContentsOfFile:(the file path)]; UIImageView *imgView = [[UIImageView alloc] initWithImage:img];
check the docs for imageWithContentsOfFile: