美文网首页
iOS给UILabel增加内边距

iOS给UILabel增加内边距

作者: XueYongWei | 来源:发表于2017-02-15 16:33 被阅读950次

UILabel默认不带内边距,调整内边距步骤:

1.制定一个空白区:UIEdgeInsets。

2. 重写drawTextInRect,传入空白区。

3.重新计算扩大label的frame(空白区占用frame的空间,导致显示不全)。

代码:

#import "SFLabel.h"
#import <UIKit/UIKit.h>
@interface SFLabel ()
// 用来决定上下左右内边距,也可以提供一个借口供外部修改,在这里就先固定写死
@property (assign, nonatomic) UIEdgeInsets edgeInsets;
@end

@implementation SFLabel


//下面三个方法用来初始化edgeInsets
- (instancetype)initWithFrame:(CGRect)frame
{
    if(self = [super initWithFrame:frame])
    {
        self.edgeInsets = UIEdgeInsetsMake(25, 0, 25, 0);
    }
    return self;
}

- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
    if (self = [super initWithCoder:aDecoder]) {
        self.edgeInsets = UIEdgeInsetsMake(25, 0, 25, 0);
    }
    return self;
}

- (void)awakeFromNib
{
   [super awakeFromNib];
    self.edgeInsets = UIEdgeInsetsMake(25, 0, 25, 0);
}

// 修改绘制文字的区域,edgeInsets增加bounds
-(CGRect)textRectForBounds:(CGRect)bounds limitedToNumberOfLines:(NSInteger)numberOfLines
{

    /*
    调用父类该方法
    注意传入的UIEdgeInsetsInsetRect(bounds, self.edgeInsets),bounds是真正的绘图区域
    */
    CGRect rect = [super textRectForBounds:UIEdgeInsetsInsetRect(bounds,
     self.edgeInsets) limitedToNumberOfLines:numberOfLines];
    //根据edgeInsets,修改绘制文字的bounds
    rect.origin.x -= self.edgeInsets.left;
    rect.origin.y -= self.edgeInsets.top;
    rect.size.width += self.edgeInsets.left + self.edgeInsets.right;
    rect.size.height += self.edgeInsets.top + self.edgeInsets.bottom;
    return rect;
}

//绘制文字
- (void)drawTextInRect:(CGRect)rect
{
    //令绘制区域为原始区域,增加的内边距区域不绘制
    [super drawTextInRect:UIEdgeInsetsInsetRect(rect, self.edgeInsets)];
}
@end

相关文章

  • iOS给UILabel增加内边距

    UILabel默认不带内边距,调整内边距步骤: 1.制定一个空白区:UIEdgeInsets。 2. 重写draw...

  • iOS UILabel增加内边距属性

    在某些场景我们想让Label像UIButton这种控件一样,可以设置内容边距,来使整体布局可拓展性增强。刚好项目中...

  • UILabel给文字增加内边距

    很多情况下,设置UILabel布局都是自适应的情况,如果你想让文字与边界有一定边距,则需要计算文本的宽高再加上边距...

  • iOS UILabel设置内边距

    有时候我们希望可以设置UILabel的内边距,为了解决这个问题,设计MarginLabel如下,继承自UILabe...

  • uilabel 内边距

    重写一个方法 - (void)drawTextInRect:(CGRect)rect { UIEdgeInsets...

  • iOS 如何制作内边距UILabel

    前言: 经常在某 App 上看到文字 Label 带有圆角边框之类的, 如果直接设置 Label 的layer 圆...

  • UILabel设置内边距

    CustomLabel.h #import @interface CustomLabel : UILabel @p...

  • UILabel内边边距

    在开发过程中,简单的使用UILabel属性,不能够达到我们显示一些特殊的要求。UILabel要显示边框时,不像UI...

  • uilabel改变内边距

    .h 直接代码 .m

  • iOS-设置UILabel的内边距

    问题说明 默认Label的显示效果如下 很多情况下,需要如下有内边距的效果(注意第一行与最后一行文字与label的...

网友评论

      本文标题:iOS给UILabel增加内边距

      本文链接:https://www.haomeiwen.com/subject/phvqwttx.html