iOS 小标签

最近因为需求变动,原来用的公共标签不能够满足需求了,遂速写了一款标签。。 下面是主要代码(用了masonry):

- (void)makeLableViewWithArray:(NSMutableArray *)arrServiceEst
{
    WS(ws)
    UIView *aView = [[UIView alloc]init];
    [self.viewServiceEst addSubview:aView];
    UIView *previousViewLable = nil;
    for (NSInteger index = 0; index < arrServiceEst.count; index++) {
        
        UILabel *alable = [[UILabel alloc]init];
        UIView *viewLable = [[UIView alloc]init];
        alable.text = [arrServiceEst[index] estName];
        alable.font = [UIFont systemFontOfSize:10];
        alable.textColor = UIColorFromRGB(0xbbbbbb);
        [self.viewServiceEst addSubview:viewLable];
        [viewLable addSubview:alable];

        if (previousViewLable) {
            [viewLable mas_makeConstraints:^(MASConstraintMaker *make) {
                make.left.mas_equalTo(previousViewLable.mas_right).with.offset(5);
            } ];

        } else {
            [viewLable mas_makeConstraints:^(MASConstraintMaker *make) {
                make.left.equalTo(aView.mas_left);
            }];

        }
        [viewLable mas_makeConstraints:^(MASConstraintMaker *make) {
            make.centerY.mas_equalTo(aView.mas_centerY);
        }];

        previousViewLable = viewLable;
        [alable mas_makeConstraints:^(MASConstraintMaker *make) {
             make.edges.equalTo(viewLable).with.insets(UIEdgeInsetsMake(2, 6, 2, 6));
        }];
        [previousViewLable.layer setCornerRadius:2];
        [previousViewLable.layer setMasksToBounds:YES];
        [previousViewLable.layer setBorderColor:RGBA(204, 204, 204, 1).CGColor];
        [previousViewLable.layer setBorderWidth:1];
    }

    [aView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.equalTo(ws.viewServiceEst).with.insets(UIEdgeInsetsMake(0, 0, 0, 0));
    }];
    
    
}

 

转载于:https://www.cnblogs.com/song-kl/p/4825331.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值