Multiple choice Which of the following is correct about 'retain' attribute in Objective C property? Its is used to retain the assigned value and release the previously set value. It makes the compiler NOT check what other threads are executing over the value at the same time. It is used to create automatically the setter and the getter methods for the property. The “retain” property is needed when the attribute is a pointer to an object. Both 1 and 4 Reveal answer Fill a bubble to check yourself E Correct answer Explanation These are correct statements about 'retain' attribute in Objective C property.