I have got a DetailViewController with a UIView (white background). Inside this UIView I have got a couple of labels which I want to adress dynamically. So I decided to use viewWithTag
Here is my code:
UILabel *l = (UILabel*)[_bgresult viewWithTag:6];
l.text = @"TEST";
But the text never appears. What do I wrong?