zoukankan      html  css  js  c++  java
  • UILabel顶端对齐

    比较一劳永逸的写法是对label添加一个分类

    @interface UILabel (VerticalAlign)
    /** 顶端对齐 */
    -(void)alignTop;
    /** 底部对齐 */
    -(void)alignBottom;
    @end
    -(void)alignTop{
        CGSize fontSize = [self.text sizeWithAttributes:@{NSFontAttributeName:self.font}];
        double finalHeight = fontSize.height * self.numberOfLines;
        double finalWidth = self.frame.size.width;
        CGSize theStringSize = [self.text boundingRectWithSize:CGSizeMake(finalWidth, finalHeight)
                                                       options:NSStringDrawingUsesLineFragmentOrigin
                                                    attributes:@{NSFontAttributeName:self.font}
                                                       context:nil].size;
        int newLinesToPad = (finalHeight - theStringSize.height) / fontSize.height;
        for(int i=0; i<newLinesToPad; i++){
            self.text = [self.text stringByAppendingString:@"
     "];
        }
    }
    -(void)alignBottom{
        CGSize fontSize = [self.text sizeWithAttributes:@{NSFontAttributeName:self.font}];
        double finalHeight = fontSize.height * self.numberOfLines;
        double finalWidth = self.frame.size.width;
        CGSize theStringSize = [self.text boundingRectWithSize:CGSizeMake(finalWidth, finalHeight)
                                                       options:NSStringDrawingUsesLineFragmentOrigin
                                                    attributes:@{NSFontAttributeName:self.font}
                                                       context:nil].size;
        int newLinesToPad = (finalHeight - theStringSize.height) / fontSize.height;
        for(int i=0; i<newLinesToPad; i++){
            self.text = [NSString stringWithFormat:@" 
    %@",self.text];
        }
    }

    然后在使用时添加[myLabel alignTop]即可。
    添加前

    使用后

  • 相关阅读:
    jmeter结果分析
    JMeter分布式测试
    负载测试
    10.循环控制语句break_continue_pass
    9.控制流语句_for循环
    7.Python 循环语句
    8.控制流语句_while循环
    6.控制流语句_条件控制if
    5.运算符
    4.元祖_列表_字典
  • 原文地址:https://www.cnblogs.com/Apologize/p/5908537.html
Copyright © 2011-2022 走看看