gpt4 book ai didi

swift - 引号不能正常工作

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

我不知道如何使用它:

"\(something)"

有了这个:

"\(otherthing)"

像那样:

 botaoA.setTitle("\(myAnswers[myQuestions.indexOfObject("\(myQuestions.new)")][0])", forState: UIControlState.Normal)

但是引号不能正常工作..

最佳答案

Avt 的回答非常正确,但是代码不是很好读。我的建议是您应该将代码的元素分开:

let questionIndex = myQuestions.indexOfObject("\(myQuestions.new)")
let selectedAnswer = myAnswers[questionIndex][0]
botaoA.setTitle(selectedAnswer, forState: UIControlState.Normal)

关于swift - 引号不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31999794/

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