Greetings Help, deal with the label. I want to make a multi line label, like a display, so that the information would be placed there top to bottom. Those. I click on one button information on the 1st line appears, and clicked another on the 2nd line. I found one code, but something I can’t do with it.
- (void)configureTableWithData:(NSArray*)dataObjects { [self.table setNumberOfRows:[dataObjects count] withRowType:@"mainRowType"]; for (NSInteger i = 0; i < self.table.numberOfRows; i++) { MainRowType* theRow = [self.table rowControllerAtIndex:i]; MyDataObject* dataObj = [dataObjects objectAtIndex:i]; [theRow.rowDescription setText:dataObj.text]; [theRow.rowIcon setImage:dataObj.image]; }
}