Re: [問題] iPhone: navigation template
※ 引述《freedom76912 (KHAKI)》之銘言:
: 感謝各位的回答 不過我de了很久還是無法>"<
: 附上兩個程式檔(都短短的而以)
: 希望能有先進幫忙解惑一下 是否犯了什麼致命的錯誤而不自知
: http://mpac.ee.ntu.edu.tw/~freedom76912/RootViewController.m
: http://mpac.ee.ntu.edu.tw/~freedom76912/DrinkDetailViewController.m
: 感謝<(_ _)>
DrinkDetailViewController.m
- (void)dealloc {
[nameTextField dealloc];
[ingredientsTextView dealloc];
[directionsTextView dealloc];
[drink dealloc];
[super dealloc];
}
應該是
- (void)dealloc {
[nameTextField release];
[ingredientsTextView release];
[directionsTextView release];
[drink release];
[super dealloc];
}
dealloc內是release你有retained過的property吧?
你的header file呢?@property有宣告成為retain嗎?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 223.138.217.152
→
05/29 15:39, , 1F
05/29 15:39, 1F
→
05/29 15:40, , 2F
05/29 15:40, 2F
→
05/29 15:41, , 3F
05/29 15:41, 3F
推
05/29 15:43, , 4F
05/29 15:43, 4F
推
05/29 17:02, , 5F
05/29 17:02, 5F
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 4 之 4 篇):
MacDev 近期熱門文章
PTT數位生活區 即時熱門文章