2

我正在尝试将属性文本设置为标签。这些属性似乎是一种工作字体和颜色。

我面临的唯一问题是换行。UILabel 的大小为 (200,300),其中 numberofLines=0。因此,它应该换行,但事实并非如此。

   NSMutableString *title=[[NSMutableString alloc] init];
    NSRange range1;
    NSRange range2;
    NSRange range3;



        NSString *str1=@"ABCD EFGHI klm";
        [title appendString:str1];
        range1=NSMakeRange(0, str1.length);


        NSString *str2=@"PQRSSSS ";
        [title appendString:str2];
        range2=NSMakeRange(range1.length, str2.length);


        NSString *str3=@"1235 2347 989034 023490234 90";
        [title appendString:str3];
        range3=NSMakeRange(range2.location+range2.length, str3.length);


    NSMutableAttributedString *attributeText=[[NSMutableAttributedString alloc] initWithString:title];
    [attributeText setAttributes:[NSDictionary dictionaryWithObjectsAndKeys:color1,NSForegroundColorAttributeName,[self getStlylishItalicFont:13.0] ,NSFontAttributeName,nil] range:range1];
    [attributeText setAttributes:[NSDictionary dictionaryWithObjectsAndKeys:color2,NSForegroundColorAttributeName,[self getStylishFont:13.0] ,NSFontAttributeName,nil] range:range2];
    [attributeText setAttributes:[NSDictionary dictionaryWithObjectsAndKeys:color3,NSForegroundColorAttributeName,[self getStylishBoldFont:13.0] ,NSFontAttributeName,nil] range:range3];

    self.myTextLabel.attributedText=attributeText;

UILabel 是这样显示的,即使高度是 300。

ABCD EFGHI klm PQRSSSS 1235 234 ...

4

5 回答 5

5

您需要的是 NSParagraphStyle 属性:

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
paragraphStyle.alignment = NSTextAlignmentLeft;
paragraphStyle.lineSpacing = 1;

//Now add this to your attributes dictionary for the key NSParagraphStyleAttributeName eg, 

@{NSParagraphStyleAttributeName:paragraphStyle,...}

在不相关的注释中,您知道以现代 Objective-c 格式创建字典会更好。只要我不这样做,我的导师就会生气。看起来像这样:

[attributeText setAttributes:@{NSForegroundColorAttributeName:color1, NSFontAttributeName:[self getStlylishItalicFont:13.0], NSParagraphStyleAttributeName:paragraphStyle, }];
//The trailing comma in the dictionary definition is not at typo it is important.
于 2013-07-17T06:42:48.587 回答
2

确保将 UILabel 的换行模式属性设置为所需的属性,如下所示:

UILabel.lineBreakMode = NSLineBreakByWordWrapping;

或者,如果您使用的是 Interface Builder,则可以在那里进行。

于 2013-07-17T05:54:22.677 回答
0

为什么不能将行数设置为 1。因为换行有意义但行数 0 没有意义.. 而且您必须为标签设置适当的框架。

于 2013-07-17T04:39:30.613 回答
0

我认为你正面临 uilabel 增加高度的问题,如果你需要 label 中的多行,那么你必须给出 havin numberoflines=0; 的属性 之后你必须根据你给标签的文本大小调整标签框的大小。

请检查下面的代码,我可能对你有用,

        NSString *someText = [NSString stringWithFormat:@"%@",[[arrFulldetails objectAtIndex:indexPath.row]valueForKey:@"MessageText"]];
        CGSize constraintSize;
        constraintSize.width = 300.0f;
        constraintSize.height =100000;
        CGSize stringSize =[someText sizeWithFont: [UIFont boldSystemFontOfSize: 17] constrainedToSize: constraintSize lineBreakMode: UILineBreakModeWordWrap];
        CGRect rect ;
        rect = CGRectMake(10, 150, 210, 20+stringSize.height);
于 2013-07-17T05:29:26.947 回答
0

连同设置:

    self.myTextLabel.lineBreakMode = NSLineBreakByWordWrapping;
    self.myTextLabel.numberOfLines = 0;

您可能还需要将标签的布局约束设置为它的超级视图。当我忽略将标签的尾随约束固定到标签的超级视图时,我遇到了这个问题。

于 2019-01-30T21:56:53.903 回答