Sometimes I want my view to contain 5 UILabels, sometimes 3 and sometimes n.
UILabel
The number of UILabels depends on data that\'s fetched fro
You'll have to make them in code instead of interface builder
for (int i = 0; i < n; i++) { UILabel *label = [[UILabel alloc] initWithFrame: CGRectMake(/* where you want it*/)]; label.text = @"text"; //etc... [self.view addSubview:label]; [label release]; }