虽然我通常在 Xcode 中使用 ARC 模式,但有时,我仍然需要释放一些 temp obj。我不知道如何使用它。这是一个例子:
TestViewController.h 文件
TestViewController
{
A* a;
A* b;
}
TestViewController.m 文件
viewDidLoad()
{
a = [[A alloc] init];
b = a;
[a release];
// I want to release a here, but when I use [a release], there will be a build error. "release is unavailable: not available in ARC mode"
}
谁能给我一些线索?