Name the memory management rules and their related methods.
Answer / maanya
The object you created is owned by you by allocating memory for it, or is owned by you by copying it.
Related Methods: alloc, allocWithZone, copy, copyWithZone, mutableCopy, mutableCopyWithZone.
If you are not the creator of an object but you want it to stay in memory, you can express an ownership interest.
Related Methods: retain.
If you created or expressed ownership interest on an object, and now you are its owner, then you are responsible to release it once you don't need it anymore.
Related Methods: release, autorelease.
If you are not the owner of an object (you did not created it or did not expressed ownership interest) then you must not release it.
| Is This Answer Correct ? | 0 Yes | 0 No |
How you will store user info (username, password or token) securely in ios?
What is auto-layout?
How to handle concurrency problems in core data?
how push notification works?
What is inactive state in ios?
What does sn mean in a text message?
What is view object in ios?
Will iphone 6s get ios 14?
How much do ios developers get paid?
Does ios support multiple inheritance?
Push notification working in ios?
Explain what is storyboard?