Xcode的自动释放在URL请求中不可用

时间:2013-02-03 20:03:18

标签: xcode web-services autorelease

我的.m文件中有以下代码:

- (IBAction)LoginButton:(id)sender {

// create string contains url address for php file, the file name is phpFile.php, it receives parameter :name
NSString *strURL = [NSString stringWithFormat:@"http://www.myURL.com/verify.php?Email=%@",Email.text];

// to execute php code
NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];

// to receive the returend value
NSString *strResult = [[[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding]autorelease];

NSLog(@"%@", strResult);

UIAlertView *alert = [[UIAlertView alloc]
                      initWithTitle:@"Result:"
                      message:strResult
                      delegate:nil
                      cancelButtonTitle:@"Okay"
                      otherButtonTitles:nil];    
                      [alert show]; 
}

我发现在自动引用计数模式下自动释放不可用。

这似乎是以下一行的问题:

NSString *strResult = [[[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding]autorelease];

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

只需删除autorelease电话;如果您使用ARC(自动引用计数),则无需担心内存管理。