- example.h文件 -我應該寫這個版本嗎?
@property (copy) NSString *string;
@property (retain) Object *object;
-- example.m --
(void) do {
// I have used 'string' and 'object' using their setter method several times.
}
(void) dealloc {
[ string release ]; // Should I write this code?
[ object release ]; // Should I write this code?
}
他們沒有使用頁頭,複製,新的。 但他們指出最新的對象是在他們的setter方法中製作而沒有發佈。 雖然這不是很重要,但我真的很想知道這種情況。
不要忘了在`dealloc`方法的末尾發送'[super dealloc]`。 – 2011-02-16 08:31:18
你有沒有`@綜合'這些實例變量? – 2011-02-16 08:36:48
這個問題是一個總結。謝謝。 – MonsterK 2011-02-16 09:41:01