gpt4 book ai didi

ios - 如何连接我用来定义此标签文本的字符串

转载 作者:行者123 更新时间:2023-11-29 03:15:25 24 4
gpt4 key购买 nike

这对某些人来说似乎非常简单,但我被卡住了。

我有这个小应用程序,它可以从一系列事物中随机选择一个事物,然后以问题的形式将其显示给用户。

NSLog(@"How about %@?", theThing);


// How About...

self.theThingLabel.text = theThing;

//How do I add a question mark to the end of that string

在上面的代码中,NSLog 字符串的工作方式与我希望标签工作的方式相同。我将“怎么样”部分作为显示结果上方的字符串来处理,但我无法弄清楚如何添加该问号……类似于 theThing+"?"

我尝试了很多东西,但我并没有幸运,而是被 xcode 一遍又一遍地警告。

最佳答案

试试这个

self.theThingLabel.text = [theThing stringByAppendingString:@"?"];

关于ios - 如何连接我用来定义此标签文本的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21746485/

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