gpt4 book ai didi

uitableview - 无法在表@masterViewController中显示url

转载 作者:行者123 更新时间:2023-11-30 14:19:07 24 4
gpt4 key购买 nike

enter image description here

我无法将 masterViewController 中的代码编译为

我收到错误 UITableView 没有名为 textLabel 的成员

var urls = [NSURL(string: "http://trialwebsite.ucoz.com/GurujiHymns/02_BIGDI_MERI_TAQDIR_KO_Singer_Masoom_Thakur.mp3")!,NSURL(string: "http://trialwebsite.ucoz.com/GurujiHymns/02_BIGDI_MERI_TAQDIR_KO_Singer_Masoom_Thakur.mp3")!,NSURL(string: "http://trialwebsite.ucoz.com/GurujiHymns/03_GURU_JI_TERI_REHMAT_Singer_Sada_Thakur.mp3")!]

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! UITableViewCell

let object = objects[indexPath.row] as! NSDate
cell.textLabe!.text = NSURL(string: urls)[indexPath.row] // error UITableView does not have member named textLabel
return cell
}

最佳答案

你被写了

cell.textLabe!.text

你必须写

cell.textLabel!.text

在textLabel中打印url字符串

cell.textLabel!.text = urls[indexPath.row].absoluteString!

关于uitableview - 无法在表@masterViewController中显示url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30702659/

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