在我的程序中,我有一个从http://www.nhara.org/scored_races-2013.htm收集信息的NSMutableData变量。当它第三次从网站获取信息时,当它包含90810个字节时,它要么消失,要么变成null,因为如果我打印一个NSString,它就是null。以下是代码
- (void)viewWillAppear:(BOOL)animated
{
// Create a new data container for the stuff that comes back from the service
xmlData = [[NSMutableData alloc] initWithCapacity:180000];
[self fetchEntries];
[super viewWillAppear:animated];
}
- (void)fetchEntries
{
// Construct a URL that will ask the service for what you want
NSURL *url = [NSURL URLWithString: @"http://www.nhara.org/scored_races-2013.htm"];//
// Put that URL into an NSURLRequest
NSURLRequest *req = [NSURLRequest requestWithURL:url];
// Create a connection that will exchange this request for data from the URL
connection = [[NSURLConnection alloc] initWithRequest:req delegate:self startImmediately:YES];
}
- (void)connection:(NSURLConnection *)conn didReceiveData:(NSData *)data
{
// Add the incoming chunk of data to the container we are keeping
// The data always comes in the correct order
[xmlData appendData:data];
NSLog(@"%@",xmlData);
NSString *xmlCheck = [[[NSString alloc] initWithData:xmlData encoding:NSUTF8StringEncoding]autorelease];
NSLog(@"xmlCheck = %@", xmlCheck);
}
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"error= %@",error);
}
- (void)connectionDidFinishLoading:(NSURLConnection *)conn {
// We are just checking to make sure we are getting the XML
NSString *xmlCheck = [[[NSString alloc] initWithData:xmlData encoding:NSUTF8StringEncoding] autorelease];
NSLog(@"xmlCheck2 = %@", xmlCheck);
}最让我困惑的是,我的NSMutableData存储了数据,但在声称具有相同的字节数时却丢失了数据。
NSMutableData的大小有限制吗?或者我的问题只是内存管理?
发布于 2012-12-08 04:56:28
您需要为xmlData变量创建一个属性。在@interface MyClass之后的头文件中,像这样创建一个
@property (nonatomic, retain) NSMutableData * xmlData;如果你使用的是ARC,你会保持它的强度,如果你使用的是下面的ARC,你会将它的强度改变为保留。当您想要使用您的变量时,您可以使用self.xmlData
https://stackoverflow.com/questions/13770770
复制相似问题