so if i have an array that has 1 item in it, it will load the label with the text from a arrayItem[1] and show the delete button, and there is no info after that . so what id like to do is a for statement...
HTML Code:
for(i=0; i=arrayItems.count;i++) {
itemListText [###how do I increment this?###].text = [NSString stringWithFormat:@"%@ - %@", [[mainDelegate.personArray objectAtIndex:0] itemTitle], [[mainDelegate.personArray objectAtIndex:0] itemAddtl]];
remove2Button.hidden = NO;
}
How can I make the number of the label at the end a variable on the fly?
for example:
itemListText1
itemListText2
itemListText3 etc
rob