They have a default size with a table view cell. You can do custom implementation. Here is an example that I give you
UILabel *productNameLabel = [[UILabel alloc] initWithFrame:CGRectMake(105, 35, 60,20 )]; productNameLabel.textColor = [UIColor whiteColor]; productNameLabel.backgroundColor=[UIColor clearColor]; productNameLabel.text=@ "Name"; [cell.contentView addSubview:productNameLabel]; [productNameLabel release];
Hope this helps you. Try using a custom implementation.
source share