views:

22

answers:

1

Hello all, How to design a tableview similar to contact application in iphone......... and also how to implement add photo image from local photo library which is there in contact application....

A: 

The Contact App uses an indexed tableView. How to implement one can be viewed here: indexed tableView.

It seems a little complicated at the start but just read it carefully and you will get the hang of it soon.

Images from the local photo library can be accessed by an UIImagePickerController (I present him in a modalViewController). The standard source property is your local Photo library UIImagePickerControllerSourceTypePhotoLibrary. So it's exactly what you need :-)

Amandir