gpt4 book ai didi

iphone - 在 iPhone 中添加 UILabel

转载 作者:行者123 更新时间:2023-12-03 20:01:58 27 4
gpt4 key购买 nike

我有一个 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。我打算在它上面添加一个标签。这样我就可以将标签文本设置为歌曲名称。

我如何添加标签来执行相同的操作。有谁知道。?需要帮助。

谢谢,世斌

最佳答案

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

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

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

然后您可以在单元格中指定将使用以下方式显示的副标题

cell.textLabel.text = songTitle;
cell.detailTextLabel.text = songUrl;

关于iphone - 在 iPhone 中添加 UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2144651/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com