Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はInstrumentsを使用してアプリのリークメモリをチェックし、これを表示しています:
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ChangeAccountCellViewController" owner:self options:nil];
この「ペン先」を解放する必要がありますか?前もって感謝します !
Objective-Cのメモリ管理は次のとおりです。、、、またはを使用してオブジェクトを作成する場合allocはcopy、適切なタイミングでオブジェクトmutableCopyを呼び出す必要があります。releaseそれ以外の場合は、他の場所で適切に処理されていることを知って安心できます。
alloc
copy
mutableCopy
release
あなたのペン先は上記の方法のいずれかで作成されていないので、いいえ、あなたはそれを解放するべきではありません。