InterviewSolution
Saved Bookmarks
| 1. |
What is a delegate? Can you retain delegates? |
|
Answer» It is an object that acts in coordination with, on behalf of, other objects when those objects encounter an EVENT in a program. If you WANT to retain a delegate, it can be RETAINED. However, the rule is not to retain it because it must E ALREADY retained you will avoid unnecessary retain cycles. |
|