UILabel的TextAlignment

时间:2015-12-11 10:08:10

标签: ios objective-c uilabel text-alignment

我知道如何在UILabel上对齐文字。 但这个问题有点紧张。 所有其他路线都有效,例如NSTextAlignmentJustifiedNSTextAlignmentNatural。只有NSTextAlignmentCenter不能使文本处于中心位置。 我的UILabel是使用StoryBoard插入的。 然后在UILabel上的文本格式在程序中实现为

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{

    CustomCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"CustomCell" forIndexPath:indexPath];
    CGRect frame = cell.cellText.frame;
    frame.size.width = cell.bounds.size.width;
    frame.size.height = cell.bounds.size.height;
    cell.cellText.frame = frame;
    cell.cellText.font = [UIFont fontWithName:@"ArialMT"  size:screenRect.size.height*0.0163];
    cell.cellText.textAlignment = NSTextAlignmentCenter;
    cell.cellText.lineBreakMode = NSLineBreakByWordWrapping;
    cell.cellText.numberOfLines = 0;
    cell.cellText.clipsToBounds = YES;
    cell.cellText.backgroundColor = [UIColor clearColor];
    cell.cellText.textColor = [UIColor blackColor];



    if(indexPath.section == 0){
        cell.backgroundColor=[UIColor blackColor];
        cell.cellText.textColor = [UIColor whiteColor];
        if(indexPath.item == 0)
            cell.cellText.text = @"Date";
        else if(indexPath.item == 1)
            cell.cellText.text = @"Age";
        else if(indexPath.item == 2)
            cell.cellText.text = @"Height (cm)";
        else if(indexPath.item == 3)
            cell.cellText.text = @"%le";
        else if(indexPath.item == 4)
            cell.cellText.text = @"Weight (kg)";
        else if(indexPath.item == 5)
            cell.cellText.text = @"%le";
    }
    else if(indexPath.section % 2 == 0 && indexPath.section != 0)
        cell.backgroundColor=[UIColor grayColor];
    else
        cell.backgroundColor=[UIColor lightGrayColor];



    return cell;


}

为什么无法对齐中心,如图所示。 enter image description here

编辑: 我改变了UILabel的背景

if(indexPath.section == 0){
        cell.backgroundColor=[UIColor blackColor];
        cell.cellText.textColor = [UIColor whiteColor];
        cell.cellText.backgroundColor = [UIColor redColor];
        if(indexPath.item == 0)
            cell.cellText.text = @"Date";
        else if(indexPath.item == 1)
            cell.cellText.text = @"Age";
        else if(indexPath.item == 2)
            cell.cellText.text = @"Height (cm)";
        else if(indexPath.item == 3)
            cell.cellText.text = @"%le";
        else if(indexPath.item == 4)
            cell.cellText.text = @"Weight (kg)";
        else if(indexPath.item == 5)
            cell.cellText.text = @"%le";
    }

更新的图片是 enter image description here

2 个答案:

答案 0 :(得分:1)

请勿使用框架设置cellText的位置。单元格未在collectionView:cellForItemAtIndexPath中布局,因此框架将出错。完全可信的是,帧将是最后一次重用该单元的帧。

相反,使用AutoLayout将UILabel约束到单元格的所有边缘。

答案 1 :(得分:1)

替换这些行

CGRect frame = cell.cellText.frame;
frame.size.width = cell.bounds.size.width;
frame.size.height = cell.bounds.size.height;
cell.cellText.frame = frame;

使用此代码。

cell.cellText.center = cell.center;
CGRect frame = cell.cellText.frame;
frame.size.width = cell.bounds.size.width;
frame.size.height = cell.bounds.size.height;
cell.cellText.frame = frame;

如果你想使用autolayout,那么只需在标签上添加两个约束。

  • 在容器中垂直居中。
  • 在容器中水平居中。

enter image description here