3

我有一个 tableView 显示歌曲列表,当我点击它播放的任何一首时。

-(void) PlaySelectedSong:(id) sender{       
Song *aSong=[aCategory.Items objectAtIndex:appDelegate.selectedSong];
NSString *content1=[[NSString alloc] initWithFormat:@"http://192.168.50.108:8888/%@",[aSong.Link stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]];

NSLog(content1);
NSURL *url=[NSURL URLWithString:content1];

NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

//Load the request in the UIWebView.
webView.delegate=self;
[webView loadRequest:requestObj]; 

}

这就是它的播放方式。问题是在播放时显示歌曲的 URL。我打算在它上面添加一个标签。这样我就可以将标签文本设置为歌曲名称。

我如何添加标签来做同样的事情。有谁知道。?需要帮忙。

谢谢,世斌

4

1 回答 1

1

确实需要更多信息来回答问题,但听起来您希望在表格视图中有两个文本字段。

创建UITableViewCell时使用UITableViewCellStyleSubtitle样式创建它。

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
                               reuseIdentifier:cellIdentifier] autorelease];

然后,您可以在单元格中指定将要显示的字幕

cell.textLabel.text = songTitle;
cell.detailTextLabel.text = songUrl;
于 2010-02-19T20:29:59.663 回答