I have a problem with UILabel and UIView. In my UIViewController I load a UIView:
NSArray *first = [[NSBundle mainBundle] loadNibNamed:@"customView" owner:self options:nil];
UIView *detail = [first objectAtIndex:0];
Inside the Xib of the UIView that i have already loaded (@"customView") there is a UILabel. How can i load also this UILabel and change the text?
Thanks