協調的UILabel我有它由海關細胞的tableview。 每個單元的總共具有三個標籤。意外的Y的UITableView
的主要問題是電池的三個標籤的中間標籤的形成。
我創建具有相同的CGRect自定義標籤一樣
UILabel *msglabeltemp = [[[UILabel alloc] initWithFrame: CGRectMake(80,20.0,230.0,80.0)] autorelease];
[cell.contentView addSubview:msglabeltemp];
msglabeltemp.backgroundColor = [UIColor clearColor];
msglabeltemp.textColor = [UIColor grayColor];
msglabeltemp.numberOfLines=6;
[msglabeltemp setFont:[UIFont fontWithName:@"Helvetica Neue" size:12.0f]];
msglabeltemp.tag=1;
msglabeltemp.font=[UIFont systemFontOfSize:12.0f];
msglabeltemp.textAlignment=UITextAlignmentLeft ;
//Adding Label To Cell
UILabel *msglabel = (UILabel *)[cell.contentView viewWithTag:1];
msglabel.text = [data1 objectForKey:@"msg"];
...這個標籤將被要求在小區內的每個標籤,但它是贈送的第一和中間標籤之間未預期的距離。
看到紅色的圖像