ARCを使用した場合のUIViewController
ベストプラクティスは、のメインビュー(例self.myOutlet = nil
)の保持されたサブビューを「解放」することです。この時点では、厳密には必要ない- viewDidUnload
と思います。self.view = nil
追加のretain
edプロパティが定義され、次のように割り当てられた場合の対処方法...
self.anotherProperty = self.view;
また
_anotherProperty = self.view; //「_anotherProperty」がivarであると仮定
...self.anotherProperty = nil
それでは必要ですか?