The items properties of UIToolbar and UITabBar are designated as copied (copy) properties.
@property(nonatomic,copy) NSArray *items;
But why is this? (copy) won't deep copy the NSArray, so what is the motivation to have these properties shallow copy the NSArray of items?