I\'m a noob in Objective-C and I have one question.
I have one UILabel object that I adding to one UIView with this code:
UILabel
UILabel *label = [
If you are on the same view
UILabel *tagLabel = (UILabel*)[view viewWithTag:1];
Also, if you want a new instance of UILabel
UILabel *newTagLabel = [tagLabel copy]; //customize new label here... [view addSubView:newTagLabel];