views:

13

answers:

1

Hi,

I am currently developing a app which records some audio files. The audio files are stored locally and the path is stored in core data.

I am populating a TableView with the list of Audio's recorded. When I click a tableviewcell, I am able to play the recorded voice.

I want to show some controls on the table view (like play and pause button same as voice recorder app in iPhone) which will be shown only when the user selects the table cell and will be dissapered when he selects other cell.

Any reference, link, example which can help me. This is very urgent for me

Regards Hitesh V

A: 

If you implement UITableViewCell you'll be able to custom the cell to your own liking. You can also use the method setSelected:( BOOL)selected animated:(BOOL)animated to change the cell depending on wether it is (or isn't) selected.

Xval