gpt4 book ai didi

xcode - 字符串插值中出现意外的 ""字符错误

转载 作者:行者123 更新时间:2023-11-30 13:45:40 26 4
gpt4 key购买 nike

由于某种原因,我无法使用表达式。我缺少什么? :( enter image description here

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath)
// Configure the cell...
if(indexPath.section == 0){

cell.textLabel!.text = searchActive == true ? "\(csFilter[indexPath.row].returnFullDescription())" : "\(subjectPerSection["CS"]![indexPath.row].returnFullDescription())";

}
else if( indexPath.section == 1){
cell.textLabel!.text = searchActive == true ? "\(seaFilter[indexPath.row].returnFullDescription())" : "\( subjectPerSection["SEA"]![indexPath.row].returnFullDescription())";
}
else if( indexPath.section == 2){
cell.textLabel!.text = searchActive == true ? "\(humFilter[indexPath.row].returnFullDescription())" : "\( subjectPerSection["HUM"]![indexPath.row].returnFullDescription())";
}
return cell
}

最佳答案

看起来你的字符串中有引号。他们需要“逃离”才能工作。

例如...rSection[\"CS\"]![indexPa....

(我收回这句话。我回答得太快了。)

我建议将三元运算符 ?: 扩展为完整的“if”语句并使用中间变量,直到它正常工作,然后再将其折叠起来。

关于xcode - 字符串插值中出现意外的 ""字符错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34973658/

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