What is strong and weak in objective c?
Answer / Vikram Rajesh Kumar
"Strong and Weak" are memory management properties in Objective-C. A property with strong attribute retains its instance variable, preventing it from being deallocated while the object remains in use. On the other hand, a property with weak attribute does not retain its instance variable, allowing it to be deallocated whenever its parent object is released.n"
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the point of closures?
Is swift objective c?
What is property and its types?
Are id and instancetype same? If not, what are differences between them?
What is concept of property?
What is difference between extern and global?
Why is objective c used?
Does objective c have multiple inheritance? Why not? How to imitate various inheritance?
What happen if we send any message to an object which is released?
What's the difference between a thread safe and a thread unsafe function?
What does mean in objective c?
What is the purpose of managed object context (nsmanagedobjectcontext) in objective-c and how does it work?