gpt4 book ai didi

ios - 将 NSDictionary 中的所有内容放入 UITextView

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:35:46 25 4
gpt4 key购买 nike

我有一个 NSDictionary,我想将它打印到一个 UITextView 中。

我尝试使用这段代码,但是当我尝试将它放入 UITextView 时,它只得到一行文本,而当我使用 NSLog 时,它运行完美。

for(int i=0; i<[array count];i++) {
dictionary = [array objectAtIndex:i];
//that shows only one line from the dictionary in the textview
textview.text = [dictionary objectForKey:@"text"];

//that shows all the dictionary with key "text" in the log
NSLog(@"%@", [dictionary objectForKey:@"text"]);
}

有没有办法解决这个问题?

最佳答案

你应该把它附加到现有的文本中

textview.text = @"";

for(int i=0; i<[array count];i++)
{
dictionary= [array objectAtIndex:i];
//that shows only one line from the dictionary in the textview
textview.text = [textview.text stringByAppendingFormat:@"%@\n",[diction objectForKey:@"text"]]];

//that shows all the dictionary with key "text" in the log
NSLog(@"%@",[diction objectForKey:@"text"]);
}

关于ios - 将 NSDictionary 中的所有内容放入 UITextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22356595/

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