1.根据字体多少使UILabel自动调节尺寸 2.跑马灯

来源:互联网 发布:所罗门矩阵刘少丹违法 编辑:程序博客网 时间:2024/06/07 10:02

<span style="font-size:14px;"></span>

在大多属性情况下,给UILabel进行动态数据绑定的时候,往往需要根据字符串的多少,动态调整UILabel的宽度或高度。

下面分两种情况考虑:

1、UILabel宽度不变,根据字体多少,自动调整UILabel的高度,并折行显示。

代码如下:

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 10, 200, 20)];    label.font = [UIFont boldSystemFontOfSize:20.0f];  //UILabel的字体大小    label.numberOfLines = 0;  //必须定义这个属性,否则UILabel不会换行    label.textColor = [UIColor whiteColor];     label.textAlignment = NSTextAlignmentLeft;  //文本对齐方式    [label setBackgroundColor:[UIColor redColor]];        //宽度不变,根据字的多少计算label的高度    NSString *str = @"可以更改此内容进行测试,宽度不变,高度根据内容自动调节";    CGSize size = [str sizeWithFont:label.font constrainedToSize:CGSizeMake(label.frame.size.width, MAXFLOAT) lineBreakMode:NSLineBreakByWordWrapping];    //根据计算结果重新设置UILabel的尺寸    [label setFrame:CGRectMake(0, 10, 200, size.height)];    label.text = str;        [self.view addSubview:label];


2、UILabel高度不变,根据字体多少,自动调整UILabel的宽度,并折行显示

代码如下:

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 10, 20, 20)];    label.font = [UIFont boldSystemFontOfSize:20.0f];  //UILabel的字体大小    label.numberOfLines = 0;  //必须定义这个属性,否则UILabel不会换行    label.textColor = [UIColor whiteColor];     label.textAlignment = NSTextAlignmentLeft;  //文本对齐方式    [label setBackgroundColor:[UIColor redColor]];        //高度固定不折行,根据字的多少计算label的宽度    NSString *str = @"高度不变获取宽度,获取字符串不折行单行显示时所需要的长度";    CGSize size = [str sizeWithFont:label.font constrainedToSize:CGSizeMake(MAXFLOAT, label.frame.size.height)];    NSLog(@"size.width=%f, size.height=%f", size.width, size.height);    //根据计算结果重新设置UILabel的尺寸    [label setFrame:CGRectMake(0, 10, size.width, 20)];    label.text = str;        [self.view addSubview:label];
其中两种情况,核心代码均为size处的代码,均要把对应的size设置为MAXFLOAT
------------------------------------------------------------------
跑马灯
<span style="font-size:24px;">  </span><span style="font-size:14px;">[runLabel sizeToFit];    CGRect frame = runLabel.frame;    frame.origin.x = 320;    runLabel.frame = frame;        [UIView beginAnimations:@"testAnimation" context:NULL];    [UIView setAnimationDuration:8.8f];    [UIView setAnimationCurve:UIViewAnimationCurveLinear];    [UIView setAnimationDelegate:self];    [UIView setAnimationRepeatAutoreverses:NO];    [UIView setAnimationRepeatCount:999999];        frame = runLabel.frame;    frame.origin.x = -frame.size.width;    runLabel.frame = frame;    [UIView commitAnimations];</span>




0 0
原创粉丝点击