gpt4 book ai didi

iphone - NSString 可能无法响应附加字符串

转载 作者:行者123 更新时间:2023-12-03 20:23:08 25 4
gpt4 key购买 nike

我有一个 NSMutableString 并且我正在尝试使用 appendString 方法。虽然它工作正常,但每次使用它时,我都会收到警告 NSString 可能无法响应附加字符串。这是我的代码:

-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{

[soapResults appendString: string]; //soapResults is an NSMutableString in .h
}

我知道我收到此警告是因为 NSString string,但如何删除此警告?

最佳答案

self.soapResults=(NSMutableString *)[self.soapResults stringByAppendingString:string];

or

soapResults=(NSMutableString *)[soapResults stringByAppendingString:string];

或者

self.soapResults=(NSMutableString *)[[self.soapResults stringByAppendingString:string] mutableCopy];

// or

soapResults=(NSMutableString *)[[soapResults stringByAppendingString:string] mutableCopy];

关于iphone - NSString 可能无法响应附加字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7318548/

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