xcode 5 dealloc void ARC Error

时间:2014-03-24 18:13:13

标签: objective-c automatic-ref-counting dealloc

我收到错误(ARC禁止发送'dealloc'的显式消息),如果我写的话:

- (void)dealloc {
    self.slider = nil;
    self.tabBar = nil;
    [super dealloc];
 }

希望有人能帮助我。 非常感谢您的回答。

1 个答案:

答案 0 :(得分:3)

删除[super dealloc],在ARC下自动删除。

应该只是:

- (void)dealloc
{
    self.slider = nil;
    self.tabBar = nil;
}