If I have the following piece of code:
for (UIView *view in [myArray copy])
Does that mean that I'm sending the copy
message to myArray
on every iteration, or Objective-C is smart enough to do copy
only once, and use it for the whole loop?