Actually, additional information is needed to answer the question, but it looks like you want to have two text fields in the table view.
When creating, UITableViewCellcreate it using the style UITableViewCellStyleSubtitle.
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:cellIdentifier] autorelease];
Then you can specify the subtitles in the cell to be displayed with
cell.textLabel.text = songTitle;
cell.detailTextLabel.text = songUrl;
source
share