【发布时间】:2013-10-02 20:31:16
【问题描述】:
按照代码的照片幻灯片教程,我遇到了一些我认为已弃用的代码。我在autorelease 有一个ARC 错误,在setDelegate:self 有一个警告
NSXMLParser *photoParser = [[[NSXMLParser alloc]
initWithContentsOfURL:[NSURL URLWithString:
@"http://localhost/photos/index.xml"]] autorelease];
[photoParser setDelegate:self];
【问题讨论】:
-
它没有被“弃用”(意味着将来不会支持它)。使用 ARC 时不需要编写它(编译器会在适合您的地方输入
retain、release、autorelease等)。
标签: objective-c automatic-ref-counting autorelease