I have a UILabel
object instance declared in the interface builder and I set its position with instance method setFrame:CGRectMake
.
Is it possible to duplicate this label and have it be at two spots on the same view controller?
So have something like this?:
[label setFrame:CGRectMake(20,49,135,35)];
[label setFrame:CGRectMake(110,49,135,35)];
Because I want to reuse this same label.