English 中文(简体)
缩略语
原标题:NSString may not respond to append string

我有<条码>NSMutableString,我正在尝试使用<条码>ppendString方法。 尽管它做了出色的工作,但每次我使用,我都收到警告。 缩略语 这是我的法典:

-(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];

页: 1

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

    //    or

soapResults=(NSMutableString *)[[soapResults stringByAppendingString:string] mutableCopy];
问题回答

如果您确信soapResults, 即:, 实际上是NSMutableString, 并且只有 > press, 则在打上appendString:前插入:。

[(NSMutableString*)soapResults appendString: string]; 

如果你宣布<代码>SapResults为NSMutableString,但事实上影响到该编码的String,那么你可能不会发出警告,但在执行上将会出现一个错误。

IfsoapResults is an NSString (由于您宣布了这一点,或由于您对<代码>NSString有影响,您可采用向该编码发送指示的方式,创建新的<代码>NSString,然后创建<代码>可互换。 ∗∗∗∗∗

简而言之,在法典中,肥皂Results不是。 或许在守则中,其他部分则无意中用“编码”取代。

除此以外,<代码>NSString实际上是代码-wise,即使NSMutableStringNSString的子类。 这可能有助于解释守则中正在发生的情况。

但是,将<代码>NSString 投到NSMutableString上并不是一个好的想法,在什么地方,它正在成为“和固定的。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。