有時,引入了弧線之前,我並沒有使用@property聲明和使用只是伊娃就像如下:從MRC電弧
//Foo.h
@interface Foo : NSObject
{
NSString *str;
}
- (id)initWithStr:(NSString *)newStr;
..
//Foo.m
- (id)initWithStr:(NSString *)newStr
{
if(self = [super init])
{
str = [newStr retain];
}
return self;
}
- (void)dealloc
{
[str release];
[super dealloc];
}
...
如何實現這樣的事情與ARC如果我不」 t想要使用@property
聲明?
http://clang.llvm.org/docs/AutomaticReferenceCounting.html – Ramz
只是不使用ARC如果你不想使用@property等你可以解開你已經做的東西這樣的情況從被置於ARC之下。比試圖製作一個適合圓孔的方形釘更簡單。 – AppHandwerker