zoukankan      html  css  js  c++  java
  • 分享一个可垂直顶端对齐的UILabel

    1.头文件

    #import <Foundation/Foundation.h>
    typedef enum VerticalAlignment {
        VerticalAlignmentTop,
        VerticalAlignmentMiddle,
        VerticalAlignmentBottom,
    } VerticalAlignment;

    @interface VerticallyAlignedLabel : UILabel 
    {
    @private
        VerticalAlignment verticalAlignment_;
    }

    @property (nonatomic, assign) VerticalAlignment verticalAlignment;

    @end 


    .M文件

    #import "VerticallyAlignedLabel.h"


    @implementation VerticallyAlignedLabel

    @synthesize verticalAlignment = verticalAlignment_;

    - (id)initWithFrame:(CGRect)frame 
    {
        self = [super initWithFrame:frame];
        if (self) 
        {
            self.verticalAlignment = VerticalAlignmentMiddle;
        }
        return self;
    }

    - (void)setVerticalAlignment:(VerticalAlignment)verticalAlignment 
    {
        verticalAlignment_ = verticalAlignment;
        [self setNeedsDisplay];
    }

    - (CGRect)textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines 
    {
        CGRect textRect = [super textRectForBounds:bounds limitedToNumberOfLines:numberOfLines];
        switch (self.verticalAlignment) {
            case VerticalAlignmentTop:
                textRect.origin.y = bounds.origin.y;
                break;
            case VerticalAlignmentBottom:
                textRect.origin.y = bounds.origin.y + bounds.size.height - textRect.size.height;
                break;
            case VerticalAlignmentMiddle:
                // Fall through.
            default:
                textRect.origin.y = bounds.origin.y + (bounds.size.height - textRect.size.height) / 2.0;
        }
        return textRect;
    }

    -(void)drawTextInRect:(CGRect)requestedRect 
    {
        CGRect actualRect = [self textRectForBounds:requestedRect limitedToNumberOfLines:self.numberOfLines];
        [super drawTextInRect:actualRect];
    }

    @end 

  • 相关阅读:
    从员工到总监,你要明白的8个道理!
    IT民工2013的升迁
    你会对老板说这十句傻话吗
    BIO
    同步工具类
    NIO(一)
    Lock与Condition
    forkJoin
    线程池与Future
    今天需要获取一个网站的web服务反馈回来的数据,找到份不错的帖子关于WebClient类的使用,记录下来·
  • 原文地址:https://www.cnblogs.com/likwo/p/2446278.html
Copyright © 2011-2022 走看看