UILabel的一些自定义用法的总结

1.UILabel的内边距的自定义

.h文件

#import <UIKit/UIKit.h>

@interface MyLabel : UILabel

@property (nonatomic,assign) UIEdgeInsets edgeInset;

- (id)initWithFrame:(CGRect)frame andEdgeInset:(UIEdgeInsets)edgeInset;

- (id)initWithEdgeInset:(UIEdgeInsets)edgeInset;

@end


.m文件

#import "MyLabel.h"

@implementation MyLabel


- (id)initWithFrame:(CGRect)frame andEdgeInset:(UIEdgeInsets)edgeInset{

    if (self = [super initWithFrame:frame]) {

        self.edgeInset = edgeInset;

    }

    return self;

}


- (id)initWithEdgeInset:(UIEdgeInsets)edgeInset{

    if (self = [super init]) {

        self.edgeInset = edgeInset;

    }

    return self;

}


-(void)drawTextInRect:(CGRect)rect{

    [super drawTextInRect:UIEdgeInsetsInsetRect(rect, self.edgeInset)];

}

2.UILabel的垂直对齐方式

.头文件

#import <UIKit/UIKit.h>


typedef enum

{

    VerticalAlignmentTop = 0, // default

    VerticalAlignmentMiddle,

    VerticalAlignmentBottom,

} VerticalAlignment;


@interface CustomeLabel : UILabel

{

    @private

        VerticalAlignment _verticalAlignment;

}


@property (nonatomic,assign)VerticalAlignment verticalAlignment;


@end


.m文件

#import "CustomeLabel.h"


@implementation CustomeLabel


- (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)drawRect:(CGRect)rect

{

    CGRect actualRect = [self textRectForBounds:rect limitedToNumberOfLines:self.numberOfLines];

    [super drawTextInRect:actualRect];

}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值