- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在读取来自 api 的响应时遇到了一个奇怪的问题。在 connectionDidFinishLoading 中,当将响应记录为字符串 [NSString stringWithUTF8String:[self.response bytes]]
时,该字符串有时会被正确记录,有时为 null,有时是带有随机字符的正确响应附在最后。
在didReceiveData中,响应没问题,但是使用appendData后出现问题。在 didReceiveData 中,我可以这样说明问题:
// This is always 0
NSLog(@"data length is %i", [data length]);
// This is always the correct response string sent from the api
NSLog(@"data string is %@", [NSString stringWithUTF8String:[data bytes]]);
NSMutableData *foo = [[NSMutableData alloc] init];
[foo appendData:data];
// This is always 8
NSLog(@"foo length is %i", [foo length]);
// This is only sometimes the correct response string!
NSLog(@"foo string is %@", [NSString stringWithUTF8String:[foo bytes]]);
[foo release];
foo = nil;
我在 SO 上看到了其他几个关于 appendData 的类似疯狂问题的问题,但它们似乎是因为附加到的变量为 nil。这表明我已经清楚地声明了我的 NSMutableData foo,但它仍然没有正确设置。
最佳答案
请发布整个代码,而不仅仅是这个简短的摘录。
我假设每次调用 -connection:didReceiveData:
时,您都会重新分配一个新的 NSMutableData
实例。您需要为此使用属性或 iVar,以便在随后调用 -connection:didReceiveData:
时将数据附加到已经存在的数据中。
- (void)startConnection
{
self.receivedData = [[NSMutableData alloc] init];
// Start connection...
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[self.receivedData appendData:data];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)
{
NSString *receivedString = [[NSString alloc] initWithData:self.receivedData encoding:NSUTF8StringEncoding];
self.receivedData = nil;
NSLog(@"Response: %@", receivedString);
}
关于ios - Xcode NSURLConnection NSMutableData appdendData 有时只能工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15129483/
有一条(相对)众所周知的 Perl 公理:“只有 Perl 可以解析 Perl”。我想知道 Perl 6 是否仍然如此? 扩大讨论...考虑到 PyPy 最近的更新,我想到了这个问题。 Perl 独特
这是设置。在上一个问题中,我发现我可以通过子组件中的状态传递对象属性,然后使用 componentDidUpdate 获取该对象属性。在这种情况下,状态和属性都称为到达。 这是基本代码... expo
我运行的是 10.5.2 社区版。我已经标记了 源/主要/资源 作为源目录。我可以右键单击并“编译”某些文件,据我所知,这意味着 IDE 将文件复制到与发送类文件的“com.mydomain.pack
我是一名优秀的程序员,十分优秀!