Hello I'm building a table with custom cells and each cell I have an image and a UILabel all done programmatically, the image works fine but I have problems with UILabel if scrolling:
When I declare the style of UILabel in the method
- (Void) tableView: (UITableView *) tableView didSelectRowAtIndexPath: (NSIndexPath *) indexPath
The UILabel is overwritten each time you change the cell imagen cell
if UILabel declare the style of a different method the UILabel disappears each time you change the cell imagen cell
This is the code I'm using for the style of the UILabel
name1= [[UILabel alloc] initWithFrame:CGRectMake(100, 0, 90,150)];
name1.textColor = [UIColor colorWithRed: 150 green: 150 blue: 150 alpha:10.0];
name1.backgroundColor = [UIColor clearColor];
name1.numberOfLines = 3;
name1.font = [UIFont fontWithName:@"Verdana" size:14.0 ];
Thank you very much for your help.
cellForRowAtIndexPath:method. From your images, it looks like you are creating aUILabelevery time (not just on creation) – ohr Oct 8 '12 at 16:07