gpt4 book ai didi

objective-c - IOS - NSMutableString : appending, 和初始化属性

转载 作者:行者123 更新时间:2023-11-28 20:36:35 26 4
gpt4 key购买 nike

我显然没有得到任何东西。

我正在解析一个 XML 文档,所以我有一个 NSMutableString 可以附加到其中一个元素,因为 foundCharacters 被截断并分成几部分。我可以让这一切正常工作,但我不明白为什么以某种方式做它不起作用。

@property (copy, nonatomic) NSMutableString *currentFoundCharacter;

这就是我为 ViewController 声明属性的方式。

然后我有:

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
if (!currentFoundCharacter) {
currentFoundCharacter = [[NSMutableString alloc] init]; // Have to do this or new strings never append to it.
}
if ([currentAttribute compare:@"description"] == NSOrderedSame && currentAttribute.length > 1) {
[currentFoundCharacter appendString:[string copy]];
}

现在这就在这里工作。它将在一个元素中组合我想要的所有内容。但是如果我尝试使用合成方法,我会得到关于改变不可变对象(immutable对象)的错误,所以基本上用 self.currentFoundCharacters 替换所有 currentFoundCharacters。

也许我误解了何时以及为何使用属性与实例变量,但在 init 方法之外,因此我的印象是使用 setter/getter 更好。最后,我只想确保编写可维护的代码。

最佳答案

在您的属性(property)中使用保留而不是复制。复制给你一个不可变的副本。

关于objective-c - IOS - NSMutableString : appending, 和初始化属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10263416/

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