Read & Use Files
Display image from file
UIImage *image1 = [[UIImage alloc] initWithContentsOfFile:filePath];
if (image1)
{
imageView.image = image1;
[image1 release];
}
Using Table View
Add the table view to the XIB
Drag a ‘Table View’ onto the view



