自动释放NSString

我是否负责释放此字符串,是否默认为autorelease?

// command is of type NSData*
char cAddress[12];
[command getBytes:cAddress range:NSMakeRange(5,12)];
NSString *someString = [NSString stringWithCharacters:(const unichar*)cAddress length:12];

它是默认自动发布的。 保留对象通常以以下形式的方法创建:

[[MyClass alloc] ...]
[MyClass new] 
[object copy]

默认情况下自动释放。

链接地址: http://www.djcxy.com/p/53273.html

上一篇: Autorelease NSString

下一篇: returning autorelease NSString still causes memory leaks