What is strong and weak in ios?
Answer / Rashmi Banival
In iOS, 'strong' and 'weak' are memory management concepts used primarily with Objective-C. They help to manage the lifecycle of objects. Strong references increase the retain count of an object by one, preventing it from being deallocated until that strong reference is released. Weak references do not increase the retain count of an object and allow it to be deallocated when its last strong reference is released. An example of weak reference is using a delegate or a notification observer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Difference between cocoa, cocoa touch and objective c?
What are the viewcontroller lifecycle in ios?
What are the limits of accessibility ?
How to measure your application's performance on an iphone device?
are you using charlesproxy ? Why/why not ?
Explain commonly used third party libraries
What are the ways to store data localy on iphone device?
What is an ios framework?
What is xib?
What is category and class extension?
What is cococa and cocoa touch?
What are ios apps coded in?