I add a label on to the view UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(10.0f, 320.0f, 300.0f, 75.0f)]; [titleLabel setText:[BusinessLogic instance].homeMessage];
then I move to another view and come back. This results in having two label controls on top of each other. What I want to do is: check if the label control has been added already. If not add it and set the text. If it is, just set the text.
What's the best way to do it. I want to learn the proper way as I have already a couple of disgusting ideas of how to do it.
Thanks. mE