从对象fileManager释放方法在下面执行。这就是我现在所知道的。我试着搜索方法发布的含义,但我找不到它。
我在StackOverflow上搜索:
我在Google上搜索过:
我也尝试在developer.apple.com上找到该方法。我看到很多关于NSfileManager class的信息,但我没有看到它的发布方法。我是Objective-C的新手。
[fileManager release];
答案 0 :(得分:5)
它继承自QPalette palette = ui->pushButton->palette();
palette.setColor(QPalette::ButtonText, Qt::red); // It's ok
palette.setColor(QPalette::Button, Qt::yellow); // but, not ok. Use theme.
ui->pushButton->setPalette(palette);
。它减少了一个对象的引用计数。只有在禁用{{1}}时才能使用它。但应始终启用它。因此启用ARC并忘记{{1}}
您可能会看到这样的错误,我相信如果您使用的是Xcode v.5.0或更高版本。